view kernel/kernel.c3 @ 328:0bb16d2a5699

Added cool sphinx plugin for creation of unittest result table
author Windel Bouwman
date Tue, 04 Feb 2014 09:01:11 +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();
}