URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib/] [libgloss/] [mn10200/] [test.c] - Rev 1769
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> #include <string.h> static void send_msg1 (void) { static char msg[] = "Hello World\r\n"; write(1, msg, strlen (msg)); } static void send_msg2 (void) { static char msg[] = "Goodnight Irene\r\n"; write(1, msg, strlen (msg)); } static void delay (void) { int i; for (i = 0; i < 32000; i++) ; } int main(int argc, char *argv[]) { int i, j; for (i = 0; i < 10; i++) { send_msg1 (); delay (); send_msg2 (); } return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log