view examples/hello.c @ 1793:f73c51496d30

* ecos.db: Added Atmel AT91 SPI bus driver and AT91EB55 devices.
author asl
date Tue, 05 Oct 2004 08:27:58 +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;
}