view examples/hello.c @ 1441:dbadab9b4441

Add macros for machine check exception
author gthomas
date Thu, 11 Dec 2003 15:17:04 +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;
}