view examples/hello.c @ 1571:bbd1a5ee1075

* src/h8300h_stub.c Bcc d:16 trace miss fix. cleanup code. * src/h8300h_stub.c deleet async_breakpoint. rewrite single step support. * include/variant.inc add h8300_trap_adjust_pc macro.
author asl
date Tue, 06 Apr 2004 20:36:45 +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;
}