Mercurial > lcfOS
annotate examples/qemu_a9_hello/hello.c3 @ 346:3bb7dcfe5529
expanded arm target
author | Windel Bouwman |
---|---|
date | Fri, 07 Mar 2014 17:05:32 +0100 |
parents | |
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 |