view user/console.c3 @ 327:61c9df5bffce

Changed emulated board to cortex a8 board
author Windel Bouwman
date Sat, 01 Feb 2014 17:21:21 +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);
    }
}