view examples/hello.c @ 1418:879ff7a40226

hal_delay_us() is a C function.
author asl
date Fri, 05 Dec 2003 09:56:54 +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;
}