comparison test/m3_bare/hello.c3 @ 337:b00219172a42

Added cool lm3s811 qemu project
author Windel Bouwman
date Thu, 20 Feb 2014 20:04:52 +0100
parents
children
comparison
equal deleted inserted replaced
336:d1ecc493384e 337:b00219172a42
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