view examples/hello.c @ 2299:04006a2b020d

* src/ide_disk.h: DISK_FUNS is now implicitly static. (IDE_DISK_INSTANCE): Reflect updated io/disk API by using ide_disk_controller. * src/ide_disk.c: Define ide_disk_controller (even though unused in practice). (ide_disk_init): Provide phys_block_size and max_transfer disk ident members.
author jlarmour
date Thu, 21 Sep 2006 16:36:24 +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;
}