diff options
author | Li-Ta Lo <ollie@lanl.gov> | 2005-01-11 22:48:54 +0000 |
---|---|---|
committer | Li-Ta Lo <ollie@lanl.gov> | 2005-01-11 22:48:54 +0000 |
commit | 515f6c729e0b4878884e74e21d00dbc4b66dcdd9 (patch) | |
tree | 82879fb1f10c07a85c573bca92410bdc6c874e3d /src/devices/emulator/x86emu | |
parent | 51990b350a03eb718f6af0890a2f9a42373106ca (diff) |
works for PCI vga cards too
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1856 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
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 { |