#include "lm8.h" //#warning Investigate the proper msleep/usleep implementations static void puts (char *ch) { while (ch) { simple_putc (*ch); ch++; } } void main (void) { lm8_uart_init (0, 0x0000, 0); puts ("Hello World\n"); // Main loop while (1) { } // Never return return; }