view examples/hello.c @ 1360:e8bca92aee60

* include/plf_io.h: Define HAL_IO_MACROS_NO_ADDRESS_MUNGING to force the IO macros not to mung the addresses. This platform don't need this.
author asl
date Sat, 08 Nov 2003 15:43:29 +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;
}