view user/console.c3 @ 387:34ac19044b8a

Hello world with paging in emulator
author Windel Bouwman
date Thu, 01 May 2014 22:09:18 +0200
parents 084cccaa5deb
children
line wrap: on
line source

module console;

import ipc;


function void main()
{
    while(true)
    {
        var ipc.Msg msg;
        ipc.receive_message(&msg);
    }
}