Mercurial > lcfOS
annotate kernel/kernel.c3 @ 300:158068af716c
yafm
author | Windel Bouwman |
---|---|
date | Tue, 03 Dec 2013 18:00:22 +0100 |
parents | 9417caea2eb3 |
children | 6753763d3bec |
rev | line source |
---|---|
283 | 1 module kernel; |
292 | 2 |
283 | 3 import memory; |
4 import process; | |
292 | 5 import scheduler; |
6 import arch; | |
283 | 7 |
8 // Main entry point of the kernel: | |
293 | 9 function void start() |
283 | 10 { |
295 | 11 process:init(); |
12 memory:init(); | |
292 | 13 |
14 | |
296 | 15 //Process proc = new process:Process(); |
292 | 16 |
296 | 17 //scheduler:queue(proc); |
283 | 18 } |
19 | |
20 | |
293 | 21 function void panic() |
283 | 22 { |
295 | 23 arch:halt(); |
283 | 24 } |
25 |