more x86_64 work. started to put the mmu bits together in the (former) stage2 loader.
[newos.git] / boot / arm / stage2.c
blob59b4e5392a529a1279efec4bfb5b900234f00ef7
1 #define LED_DISPLAY(pos, c) \
2 (*(char *)(0x08000100 + (3-pos)*2) = (c))
4 void _start(void);
5 void _start(void)
7 LED_DISPLAY(0, 'n');
8 LED_DISPLAY(1, 'u');
9 LED_DISPLAY(2, 'o');
10 LED_DISPLAY(3, 's');
12 for(;;);
14 return;