/* This line tells emacs to use -*-asm-*- mode. */ /* * Initialization and exit code for gcc-compiled C programs. */ #include "rom.h" xref ___makestack xref _main xref _exit move.a #2048,d0 /* program stack size in nibbles */ jsr ___makestack /* I put the call to main here instead of lib0 so that people can * safely store all their libraries in a ROM card. */ jsr _main move.wp c,b jsr _exit