view examples/hello.c @ 1745:49e24a462730

Clean up flash configury
author bartv
date Sun, 21 Nov 2004 17:33: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;
}