Kernel/arm7 - Fixing, manages to start pmm init
[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("Acess2 ARMv7 v"EXPAND_STR(KERNEL_VERSION)"\n", BUILD_NUM);
20         LogF(" Build %i\n", BUILD_NUM);
21 //      Interrupts_Setup();
22         
23         MM_SetupPhys();
24         
25         //TODO: 
26         LogF("End of kmain(), for(;;);\n");
27         for(;;);
28 }
29
30 void Arch_LoadBootModules(void)
31 {
32 }
33

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