view kernel/kernel.c3 @ 308:2e7f55319858

Merged analyse into codegenerator
author Windel Bouwman
date Fri, 13 Dec 2013 11:53:29 +0100
parents 6753763d3bec
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();
}