Mercurial > ecos
view examples/hello.c @ 2951:ecbc3608d513
* src/flashiodev.c (flashiodev_lookup): Fix wrong code execution if
CYGFUN_IO_FLASH_BLOCK_FROM_FIS is enabled and
CYGFUN_IO_FLASH_BLOCK_FROM_DEVOFFSET is disabled.
| author | jlarmour |
|---|---|
| date | Sat, 15 May 2010 16:43:56 +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; }
