Kernel/vfs - Fixing OpenInode support
[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 extern void     Arch_LoadBootModules(void);
12
13 // === PROTOTYPES ===
14  int    kmain(void);
15
16 // === CODE ===
17 int kmain(void)
18 {
19         LogF("Booting...\n");
20 //      Interrupts_Setup();
21         
22         MM_SetupPhys();
23         
24         //TODO: 
25         for(;;);
26 }
27
28 void Arch_LoadBootModules(void)
29 {
30 }
31

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