view examples/hello.c @ 1713:c73c316b8a2e

* include/hal_intr.h (HAL_PLATFORM_RESET): Added missing ;
author asl
date Mon, 09 Aug 2004 17:47:22 +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;
}