comparison kernel/kernel.c3 @ 308:2e7f55319858

Merged analyse into codegenerator
author Windel Bouwman
date Fri, 13 Dec 2013 11:53:29 +0100
parents 6753763d3bec
children c7cc54c0dfdf
comparison
equal deleted inserted replaced
307:e609d5296ee9 308:2e7f55319858
6 import arch; 6 import arch;
7 7
8 // Main entry point of the kernel: 8 // Main entry point of the kernel:
9 function void start() 9 function void start()
10 { 10 {
11 process:init(); 11 process.init();
12 //memory:init(); 12 //memory:init();
13 13
14 14
15 //Process proc = new process:Process(); 15 //Process proc = new process:Process();
16 16
18 } 18 }
19 19
20 20
21 function void panic() 21 function void panic()
22 { 22 {
23 arch:halt(); 23 arch.halt();
24 } 24 }
25 25