view examples/hello.c @ 2942:00f713b93ea4

* src/devs_flash_atmel_dataflash.c: Correct bad sector count for AT45DB642 dataflash device. * cdl/devs_flash_atmel_dataflash.cdl: Mark CYGPKG_IO_FLASH as the parent of this package.
author sergeig
date Fri, 26 Mar 2010 09:21:38 +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;
}