view examples/hello.c @ 1758:400806bc9c4f flash_v2_20041123

Remove unnecessary .2ram section attributes. These functions do not manipulate the hardware directly so do not need special treatment
author bartv
date Mon, 22 Nov 2004 21:27:43 +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;
}