view examples/hello.c @ 2675:b0cbed34a04d

* include/var_io.h: Memory access macros added.
author asl
date Tue, 02 Dec 2008 20:09:07 +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;
}