view kernel/kernel.c3 @ 310:e95e5572cd6d

Added utils doc page
author Windel Bouwman
date Fri, 13 Dec 2013 14:10:10 +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();
}