Mercurial > ecos
view examples/hello.c @ 359:8b024937045d
* src/if_i82559.c (pci_init_find_82559s): Changed scope of
max_interrupt_handle since its needed in other places.
* src/if_i82559.c (i82559_stop): Corrected wrong name of variable
in a diag_printf function.
| author | asl |
|---|---|
| date | Sun, 06 Oct 2002 13:18:28 +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; }
