view examples/hello.c @ 3303:e10148c0a535

Add STM32 Erhernet driver and Ethetnet driver entries to STM3220G-eval and STM3240G-eval boards.
author vae
date Sun, 14 Apr 2013 23:36:17 +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;
}