Mercurial > ecos
view examples/hello.c @ 3021:81907fa7e33b
* cdl/hal_cortexm_lpc17xx.cdl:
* include/hal_cache.h:
* include/hal_diag.h:
* include/plf_stub.h:
* include/var_arch.h:
* include/variant.inc:
* include/var_intr.h:
* include/var_io.h:
* src/hal_diag.c:
* src/lpc17xx_misc.c:
New package -- NXP LPC17XX variant HAL.
| author | sergeig |
|---|---|
| date | Sun, 13 Mar 2011 15:13:28 +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; }
