view experiments/qemu_vexpress_a9/main.c @ 410:6aa9743ed362 tip

Reflect change in c3 public modifier
author Windel Bouwman
date Mon, 23 Feb 2015 21:06:04 +0100
parents 34ac19044b8a
children
line wrap: on
line source



volatile unsigned int * const UART0_DR = (unsigned int *)0x109000;


void print_uart0(const char *s)
{
  while(*s != '\0') { /* Loop until end of string */
    *UART0_DR = (unsigned int)(*s); /* Transmit char */
    s++; /* Next char */
  }
}


void start(void)
{
    print_uart0("Hello world\n");
    for (;;);
}