view examples/hello.c @ 1523:2e1b9250937f

Better identification of RedBoot mode
author gthomas
date Thu, 26 Feb 2004 16:20:50 +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;
}