Mercurial > lcfOS
view kernel/kernel.c3 @ 300:158068af716c
yafm
author | Windel Bouwman |
---|---|
date | Tue, 03 Dec 2013 18:00:22 +0100 |
parents | 9417caea2eb3 |
children | 6753763d3bec |
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(); }