view examples/hello.c @ 1700:bbdd4a302a64

* src/flash.c: * src/fconfig.c: Make use of the new flash API.
author asl
date Thu, 05 Aug 2004 13:18:48 +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;
}