Mercurial > ecos
view examples/hello.c @ 2845:4597dc41d041
* cdl/hal_arm.cdl: Merge goals for CYGHWR_THUMB and
CYGBLD_ARM_ENABLE_THUMB_INTERWORK to allow selective application
of CDL solutions within the eCos Configuration Tool.
| author | jld |
|---|---|
| date | Fri, 06 Mar 2009 16:43:30 +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; }
