view examples/hello.c @ 1702:0673c75f3a08

Import the first version of the synth flash driver which uses the V2 API.
author asl
date Thu, 05 Aug 2004 13:25:32 +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;
}