Mercurial > lcfOS
comparison user/lib.c3 @ 315:084cccaa5deb
Added console and screen
author | Windel Bouwman |
---|---|
date | Sat, 21 Dec 2013 10:03:01 +0100 |
parents | 04cf4d26a3bc |
children | 6ae782a085e0 |
comparison
equal
deleted
inserted
replaced
314:38f5f298ce0e | 315:084cccaa5deb |
---|---|
1 module lib; | 1 module lib; |
2 import ipc; | |
2 | 3 |
3 /* | 4 /* |
4 Runtime library. | 5 Runtime library. |
5 | 6 |
6 */ | 7 */ |
7 | 8 |
8 function void print(int txt) | 9 function void print(int txt) |
9 { | 10 { |
10 // TODO | 11 // TODO |
12 var ipc.Msg msg; | |
13 ipc.SendMessage(&msg); | |
11 } | 14 } |
12 | 15 |
13 | 16 |