--- hatari/src/uae-cpu/hatari-glue.c 2019/04/01 07:09:16 1.1 +++ hatari/src/uae-cpu/hatari-glue.c 2019/04/01 07:09:29 1.1.1.2 @@ -19,7 +19,6 @@ int illegal_mem = FALSE; int address_space_24 = 1; int cpu_level = 0; /* 68000 (default) */ int cpu_compatible = 0; -int m68k_speed = 0; long STmem_size = 0x100000; /* 1MB */ long TTmem_size = 0; @@ -53,8 +52,6 @@ int intlev (void) /* ??? */ int Init680x0(void) { memory_init(); -fprintf(stderr, "TOS version: %x.%x\n", STMemory_ReadByte(2), STMemory_ReadByte(3)); -fprintf(stderr, "PC start: $%lx\n", STMemory_ReadLong(4)); init_m68k(); #ifdef USE_COMPILER @@ -85,7 +82,6 @@ void Start680x0(void) */ unsigned long OpCode_ConnectedDrive(uae_u32 opcode) { - fprintf(stderr, "OpCode_ConnectedDrive handled\n"); /* Set connected drives */ STMemory_WriteWord(0x4c2, ConnectedDriveMask); m68k_incpc(2); @@ -105,7 +101,6 @@ unsigned long OpCode_ConnectedDrive(uae_ */ unsigned long OpCode_TimerD(uae_u32 opcode) { - fprintf(stderr, "OpCode_TimerD handled\n"); m68k_dreg(regs,0)=3; /* 3 = Select Timer D */ m68k_dreg(regs,1)=7; /* 1 = /4 for 9600 baud(used /200) */ m68k_dreg(regs,2)=100; /* 2 = 9600 baud(100) */