view examples/hello.c @ 3091:48bcbd47e3f4

* cdl/hal_freescale_edma.cdl * include/freescale_edma.h * src/hal/freescale_edma.c New package -- Freescale eDMA DMA controller support [Bugzilla 1001450]
author vae
date Wed, 22 Feb 2012 21:36:23 +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;
}