view examples/hello.c @ 2331:2296f0d76ae2

* cdl/flash_intel_28fxxx.cdl, include/flash_28fxxx_parts.inl: Add Intel 28F320J3 part.
author jlarmour
date Thu, 14 Dec 2006 11:25:19 +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;
}