view examples/hello.c @ 1892:59626c067d41

* src/hal_misc.c: hal_lsbit_index & hal_msbit_index cleanup.
author asl
date Tue, 08 Feb 2005 20:01:47 +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;
}