Mercurial > lcfOS
annotate examples/qemu_a9_hello/hello.c3 @ 405:f381cea07fec
merge
author | Windel Bouwman |
---|---|
date | Thu, 19 Feb 2015 14:10:52 +0100 |
parents | 3bb7dcfe5529 |
children |
rev | line source |
---|---|
346 | 1 module hello; |
2 | |
3 function void main() | |
4 { | |
5 var int* UART0DR; | |
6 UART0DR = cast<int*>(0x10009000); // 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 |