Mercurial > lcfOS
annotate kernel/kernel.c3 @ 295:917eab04b8b7
Added disasm
author | Windel Bouwman |
---|---|
date | Thu, 28 Nov 2013 21:10:32 +0100 |
parents | 6aa721e7b10b |
children | 9417caea2eb3 |
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 | |
295 | 15 Process proc = new process:Process(); |
292 | 16 |
295 | 17 scheduler:queue(proc); |
283 | 18 } |
19 | |
20 | |
293 | 21 function void panic() |
283 | 22 { |
295 | 23 arch:halt(); |
283 | 24 } |
25 |