view examples/hello.c @ 3274:fc839db92b9c

New: Add Freescale eDMA to eCos reference manual.
author vae
date Sun, 16 Feb 2014 08:34: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;
}