view examples/hello.c @ 2548:571e0ca40e73

* LPC2xxx ethernet driver package created * cdl/lpc2xxx_eth.cdl * src/if_lpc2xxx.c
author asl
date Thu, 11 Sep 2008 17:51:53 +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;
}