--- hatari/src/uae-cpu/hatari-glue.c 2019/04/01 07:11:36 1.1.1.8 +++ hatari/src/uae-cpu/hatari-glue.c 2019/04/01 07:13:11 1.1.1.10 @@ -7,7 +7,7 @@ This file contains some code to glue the UAE CPU core to the rest of the emulator and Hatari's "illegal" opcodes. */ -char HatariGlue_rcsid[] = "Hatari $Id: hatari-glue.c,v 1.1.1.8 2019/04/01 07:11:36 root Exp $"; +const char HatariGlue_rcsid[] = "Hatari $Id: hatari-glue.c,v 1.1.1.10 2019/04/01 07:13:11 root Exp $"; #include @@ -129,7 +129,7 @@ unsigned long OpCode_SysInit(uae_u32 opc if(!bInitGemDOS) { - /* Init on boot - see cartimg.c */ + /* Init on boot - see cart.c */ GemDOS_Boot(); /* We use this to get pointer to Line-A structure details @@ -143,18 +143,6 @@ unsigned long OpCode_SysInit(uae_u32 opc fill_prefetch_0(); return 4; } - - -/* ----------------------------------------------------------------------- */ -/* - Re-direct execution to old GEMDOS calls, used in 'cart.s' -*/ -unsigned long OpCode_OldGemDos(uae_u32 opcode) -{ - m68k_setpc( STMemory_ReadLong(CART_OLDGEMDOS) ); - fill_prefetch_0(); - return 4; -} /* ----------------------------------------------------------------------- */