Mercurial > ecos
view examples/hello.c @ 3209:ea9c78f2cd61
* cdl/hal_cortexm_kinetis.cdl: Changes to Kinetis part builder related to
addition of archhitectural hardware floating point support.
CYGHWR_HAL_CORTEXM_KINETIS_FPU and CYGHWR_HAL_CORTEXM_KINETIS_FLEXNVM
look and feel like other name building options. Added new Kinetis
members to part selection.
* include/var_io.h, src/kinetis_misc.c: Enumerated PORT F.
[Bugzilla 1001607]
| author | vae |
|---|---|
| date | Sat, 09 Mar 2013 17:19:38 +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; }
