Mercurial > lcfOS
view kernel/kernel.c3 @ 304:fa99f36fabb5
Fix docs
author | Windel Bouwman |
---|---|
date | Fri, 06 Dec 2013 12:45:02 +0100 |
parents | 6753763d3bec |
children | 2e7f55319858 |
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(); }