view examples/hello.c @ 980:802a526cd4ac

* vectors.S (handle_IRQ_or_FIQ): Use thumb-aware call to hal_spurious_IRQ.
author jlarmour
date Wed, 30 Apr 2003 13:35:06 +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;
}