Mercurial > lcfOS
annotate experiments/qemu_vexpress_a9/main.c @ 389:2ec730e45ea1
Added check for recursive struct
author | Windel Bouwman |
---|---|
date | Fri, 16 May 2014 12:29:31 +0200 |
parents | 34ac19044b8a |
children |
rev | line source |
---|---|
340 | 1 |
2 | |
387 | 3 volatile unsigned int * const UART0_DR = (unsigned int *)0x109000; |
340 | 4 |
5 | |
6 void print_uart0(const char *s) | |
7 { | |
8 while(*s != '\0') { /* Loop until end of string */ | |
9 *UART0_DR = (unsigned int)(*s); /* Transmit char */ | |
10 s++; /* Next char */ | |
11 } | |
12 } | |
13 | |
14 | |
15 void start(void) | |
16 { | |
17 print_uart0("Hello world\n"); | |
18 for (;;); | |
19 } | |
20 | |
21 |