Mercurial > ecos
view examples/hello.c @ 2288:0f6dadbc02a9
* include/basetype.h: (CYG_DOUBLE_BYTEORDER): Add proper
definition for VFP floating point format (uses "natural" byte
order) on little-endian ARM.
| author | asl |
|---|---|
| date | Thu, 07 Sep 2006 09:32:35 +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; }
