view examples/hello.c @ 1972:87342fcfea2d

Apply misc fixes provided by Peter Korsgaard, and another doc fix. Add a CYG_HAL_TABLE_TYPE to the bus data structure to allow for architectures with alignments > 4 bytes
author bartv
date Sat, 14 May 2005 09:31:02 +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;
}