view examples/hello.c @ 2126:0141a9e24d21

* src/vectors.S: disable FIQ in IRQ handler to fix race condition recursively entering IRQ handler through FIQ handler. Remove unreferenced handle_IRQ_or_FIQ label.
author asl
date Thu, 09 Feb 2006 16:47:39 +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;
}