view examples/hello.c @ 1725:e0ebd07e25f3

* cdl/redboot.cdl: Change CYGNUM_REDBOOT_FLASH_BASE to a booldata so we don't always look at address 0 for the flash!
author asl
date Tue, 14 Sep 2004 14:02:47 +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;
}