Mercurial > lcfOS
view kernel/kernel.c3 @ 357:818be710e13d
Added acceptance function to burg
author | Windel Bouwman |
---|---|
date | Fri, 14 Mar 2014 15:14:29 +0100 |
parents | 52492b304adf |
children |
line wrap: on
line source
module kernel; import memory; import process; import scheduler; import arch; import io; // Main entry point of the kernel: function void start() { arch.init(); io.println("Welcome to lcfos!"); // io.print_int(0x1337); // process.init(); //memory:init(); //Process proc = new process:Process(); //scheduler:queue(proc); while(true) {} } function void panic() { arch.halt(); }