view examples/hello.c @ 2680:b0d201ac6a5b

* src/mips_mips32.ld: gcc_except_table subsections don't need to be kept. * src/mips_mip32.ld (SECTION_gcc_except_table): Mark gcc_except_table as KEEP
author jld
date Fri, 05 Dec 2008 08:22:15 +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;
}