Mercurial > ecos
view examples/hello.c @ 2956:ae92e99547f4
* ecos.db: Add AT91 ADC driver.
* devs/adc/arm/at91/*: Initial check-in ADC driver for AT91 contributed by
Christophe Coutand.
| author | sergeig |
|---|---|
| date | Sun, 30 May 2010 10:24: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; }
