Mercurial > lcfOS
annotate test/m3_bare/hello.c3 @ 388:e07c2a9abac1
Enabled paging in kernel
author | Windel Bouwman |
---|---|
date | Fri, 02 May 2014 14:51:46 +0200 |
parents | b00219172a42 |
children |
rev | line source |
---|---|
337 | 1 module hello; |
2 | |
3 function void main() | |
4 { | |
5 var int* UART0DR; | |
6 UART0DR = cast<int*>(0x4000C000 + 0x000); // UART0 Data register | |
7 *UART0DR = 72; | |
8 *UART0DR = 101; | |
9 *UART0DR = 108; | |
10 *UART0DR = 108; | |
11 *UART0DR = 111; | |
12 *UART0DR = 32; | |
13 *UART0DR = 119; | |
14 *UART0DR = 111; | |
15 *UART0DR = 114; | |
16 *UART0DR = 108; | |
17 *UART0DR = 101; | |
18 | |
19 while(true) {} | |
20 } | |
21 |