Mercurial > ecos
view examples/hello.c @ 3240:c98d5e2bd690
Remove requirement for WRITETHRU cache mode that raised conflict when cache was disabled. Bug reported by Mike Jones. [ Bugzilla 1001838 ]
| author | vae |
|---|---|
| date | Sun, 02 Jun 2013 16:18:05 +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; }
