view examples/hello.c @ 1445:85afbe4f7f1c

Fix diag I/O when buffers are cacheable
author gthomas
date Tue, 16 Dec 2003 14:33:17 +0000
parents ead06911cbae
children
line wrap: on
line source

/* this is a simple hello world program */
#include <stdio.h>

int main(void)
{
  printf("Hello, eCos world!\n");
  return 0;
}