view examples/hello.c @ 943:91935c8ab9be

iq80321 flash fix
author msalter
date Mon, 14 Apr 2003 11:29:42 +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;
}