view examples/hello.c @ 1432:f9dc30f9589a

Rework CDL to use common defines for HAL_PLATFORM_CPU
author gthomas
date Mon, 08 Dec 2003 14:31:54 +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;
}