view examples/hello.c @ 3114:08eb5070a44f

New package --Ethernet driver for Actel Smartfusion Evaluation Board [Bugzilla 1001291]
author vae
date Mon, 12 Mar 2012 20:41:07 +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;
}