diff options
Diffstat (limited to 'src/devices/emulator/x86emu')
-rw-r--r-- | src/devices/emulator/x86emu/sys.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/emulator/x86emu/sys.c b/src/devices/emulator/x86emu/sys.c index 2b437bff80..7669c29d9c 100644 --- a/src/devices/emulator/x86emu/sys.c +++ b/src/devices/emulator/x86emu/sys.c @@ -205,8 +205,8 @@ u8 *mem_ptr(u32 addr, int size) } else #endif if (addr < 0x200) { - printk("%x:%x updating int vector 0x%x\n", - M.x86.R_CS, M.x86.R_IP, addr >> 2); + //printk("%x:%x updating int vector 0x%x\n", + // M.x86.R_CS, M.x86.R_IP, addr >> 2); retaddr = (u8 *) (M.mem_base + addr); } else { |