view user/console.c3 @ 365:98ff43cfdd36

Nasty bug in adr instruction
author Windel Bouwman
date Wed, 19 Mar 2014 22:32:04 +0100
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);
    }
}