#include #include __attribute__ ((noreturn)) void kentry (void); static const char *text[] = { "hello, friend.\r\n", "hello, friend?\r\n", "that's lame.\r\n", "maybe i should give you a name.\r\n", "but that's a slippery slope.\r\n", "you're only in my head.\r\n", "we have to remember that.\r\n", "shit.\r\n", "it's actually happening, i'm talking to an imaginary person.\r\n\n" }; void kentry (void) { unsigned int line; /* Test UART and LED ---------------------------------------------------- */ while (1) { for (line = 0; line < sizeof text / sizeof *text; ++line) { kputs_busytc (text[line]); led_toggle (); } } }