view examples/hello.c @ 3022:cf47c8b35934

* cdl/hal_cortexm_lpc17xx_lpc1766stk.cdl: * include/pkgconf/mlt_cortexm_lpc1766_rom.h: * include/pkgconf/mlt_cortexm_lpc1766_rom.ldi: * include/plf_arch.h: * include/plf_intr.h: * include/plf_io.h: * src/lpc1766stk_misc.c: New package -- Olimex LPC1766STK board.
author sergeig
date Sun, 13 Mar 2011 15:14:45 +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;
}