langtoncant/src/main.c
Bjorn Einar Bjarntes 91574f690c get rid of it
2021-12-18 14:16:34 +01:00

17 lines
No EOL
250 B
C

#include <stdio.h>
#define BYTE unsigned char
int i;
int main(void) {
printf("Hello ant");
while (1)
{
i++;
*(BYTE*)0xd020 = i;
*(BYTE*)0xd021 = i+1;
if (i > 254)
i = 0;
}
return 0;
}