Kernel - Attempting to fix scroll redraw issue
[tpg/acess2.git] / Kernel / arch / arm7 / main.c
1 /*
2  * Acess2
3  *
4  * ARM7 Entrypoint
5  * arch/arm7/main.c
6  */
7
8 // === IMPORTS ===
9 extern void     Interrupts_Setup(void);
10 extern void     MM_SetupPhys(void);
11
12 // === PROTOTYPES ===
13  int    kmain(void);
14
15 // === CODE ===
16 int kmain(void)
17 {
18         Interrupts_Setup();
19         
20         MM_SetupPhys();
21         
22         //TODO: 
23         for(;;);
24 }

UCC git Repository :: git.ucc.asn.au