old-firmloader/example.c
2016-07-16 20:21:48 +02:00

6 lines
No EOL
154 B
C

void init() {
unsigned char *lfb=(unsigned char*)0x18300000;
for(int i=500;i<1000;i++)
lfb[i]=0xFF; //Output simple message
for(;;);
}