view examples/hello.c @ 3017:08d845c99239

* cdl/lpc2xxx_wallclock.cdl: * src/lpc2xxx_wallclock.cxx: Added support for LPC17XX CPUs.
author sergeig
date Sun, 13 Mar 2011 13:19:58 +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;
}