view examples/hello.c @ 3168:2a048cafed94

Add support for 32 channel eDMA [Bugzilla 1001579]
author vae
date Wed, 09 May 2012 22:12:01 +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;
}