Kernel/arm7 - Working on ARM7 port
[tpg/acess2.git] / Kernel / arch / arm7 / main.c
1 /*
2  * Acess2
3  *
4  * ARM7 Entrypoint
5  * arch/arm7/main.c
6  */
7 #include <acess.h>
8
9 // === IMPORTS ===
10 extern void     Interrupts_Setup(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