Mercurial > lcfOS
view kernel/kernel.c3 @ 318:e84047f29c78
Add burg and yacc initial attempts
author | Windel Bouwman |
---|---|
date | Tue, 31 Dec 2013 12:38:15 +0100 |
parents | 2e7f55319858 |
children | c7cc54c0dfdf |
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(); }