view examples/hello.c @ 3087:37f8bded2ac7

* cdl/kinetis_irq_scheme.cdl Centralized IRQ priority scheme. * cdl/hal_cortexm_kinetis.cdl: * cdl/kinetis_flexbus.cdl * include/var_io_devs.h: * include/var_io.h: * src/kinetis_clocking.c: * src/kinetis_misc.c: Add I/O defs for eDMA, DSPI. Add flexbus control. CYG_HAL_STARTUP parenthed bt CYG_HAL_STARTUP_ENV. Early clock start [Bugzilla 1001450]
author vae
date Wed, 22 Feb 2012 21:26:08 +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;
}