Mercurial > lcfOS
view kernel/kernel.c3 @ 293:6aa721e7b10b
Try to improve build sequence
author | Windel Bouwman |
---|---|
date | Thu, 28 Nov 2013 20:39:37 +0100 |
parents | 534b94b40aa8 |
children | 917eab04b8b7 |
line wrap: on
line source
module kernel; import memory; import process; import scheduler; import arch; // Main entry point of the kernel: function void start() { process.Init(); memory.Init(); Process proc = new process.Process(); scheduler.queue(proc); } function void panic() { arch.halt(); }