00001 /* 00002 Startup at fixed address that does not touch stack pointer or other 00003 registers. This makes it possible to return to the caller. 00004 This is useful when the default player main loop can be used but some 00005 routines need to be patched. The code can perform the patches and 00006 return to the caller. 00007 */ 00008 .sect code,code 00009 .org 0x50 00010 .import _main 00011 jmpi _main 00012 00013 .end