view examples/hello.c @ 1340:f18f448991bc

* include/flash_at29cxxxx.inl: Improves driver, to work with 16 bit wide access. The driver have to write 256 times after each command sequence, but with two 8 bit divices parallel, the driver writes only 128 times.
author asl
date Thu, 30 Oct 2003 19:25:44 +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;
}