view examples/hello.c @ 3008:5798ca37fb96

* doc/ek_lm3s811.sgml: Eliminate underscores in SGML ID strings. They cause problems for some installations of openjade. * cdl/hal_cortexm_ek_lm3s811.cdl: Fix documentation filename to match the above change.
author jld
date Wed, 09 Feb 2011 22:19:09 +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;
}