view examples/hello.c @ 1731:a24c2d6d8afa

* cdl/flash_atmel_at49xxxx.cdl: Fixed typo in CYGHWR_IO_FLASH_DEVICE_LEGACY.
author asl
date Thu, 30 Sep 2004 18:10:03 +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;
}