view examples/hello.c @ 342:cac491d76066

Can't ignore BAUD rate commands - RedBoot needs them.
author gthomas
date Fri, 20 Sep 2002 22:04:12 +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;
}