diff kernel/kernel.c3 @ 295:917eab04b8b7

Added disasm
author Windel Bouwman
date Thu, 28 Nov 2013 21:10:32 +0100
parents 6aa721e7b10b
children 9417caea2eb3
line wrap: on
line diff
--- a/kernel/kernel.c3	Thu Nov 28 20:39:56 2013 +0100
+++ b/kernel/kernel.c3	Thu Nov 28 21:10:32 2013 +0100
@@ -8,18 +8,18 @@
 // Main entry point of the kernel:
 function void start()
 {
-    process.Init();
-    memory.Init();
+    process:init();
+    memory:init();
 
 
-    Process proc = new process.Process();
+    Process proc = new process:Process();
 
-    scheduler.queue(proc);
+    scheduler:queue(proc);
 }
 
 
 function void panic()
 {
-    arch.halt();
+    arch:halt();
 }