view examples/hello.c @ 1736:748b23626cb1

* cdl/devs_flash_atmel_dataflash.cdl: Remove CYGSEM_IO_FLASH_READ_INDIRECT which only legacy drivers should use when they provide a flash_read_buf function. For V2 drivers providing a read function in the device structure is sufficient.
author asl
date Thu, 07 Oct 2004 07:47:04 +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;
}