view examples/hello.c @ 1675:e1d094896914

Don't check if the flash is write protected before performing a read.
author asl
date Sun, 20 Jun 2004 12:46:16 +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;
}