view kernel/kernel.c3 @ 297:a6f61e9a9d5c

Added docs requirements
author Windel Bouwman
date Sun, 01 Dec 2013 17:35:54 +0100
parents 9417caea2eb3
children 6753763d3bec
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();
}