view kernel/kernel.c3 @ 338:8eb4a6fe8fc8

Added testcase with emulator
author Windel Bouwman
date Fri, 21 Feb 2014 13:31:29 +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();
}