view examples/hello.c @ 2384:aa470c9cff59

* ecos.db Ethernet driver for Olimex SAM7-EX256
author asl
date Mon, 09 Apr 2007 13:01:43 +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;
}