From 6c9bc01b0ead45ebde3479e2c3c0c150ce99625f Mon Sep 17 00:00:00 2001 From: Myles Watson Date: Tue, 7 Sep 2010 22:30:15 +0000 Subject: Make a Kconfig option for debugging output from realmode emulation. Trivial. Signed-off-by: Myles Watson Acked-by: Myles Watson git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5783 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/devices/oprom/x86.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/devices/oprom/x86.c') diff --git a/src/devices/oprom/x86.c b/src/devices/oprom/x86.c index 42267faa5f..60776f68ea 100644 --- a/src/devices/oprom/x86.c +++ b/src/devices/oprom/x86.c @@ -329,6 +329,7 @@ int __attribute__((regparm(0))) interrupt_handler(u32 intnumber, cs = cs_ip >> 16; flags = stackflags; +#if CONFIG_REALMODE_DEBUG printk(BIOS_DEBUG, "oprom: INT# 0x%x\n", intnumber); printk(BIOS_DEBUG, "oprom: eax: %08x ebx: %08x ecx: %08x edx: %08x\n", eax, ebx, ecx, edx); @@ -336,6 +337,7 @@ int __attribute__((regparm(0))) interrupt_handler(u32 intnumber, ebp, esp, edi, esi); printk(BIOS_DEBUG, "oprom: ip: %04x cs: %04x flags: %08x\n", ip, cs, flags); +#endif // Fetch arguments from the stack and put them into // a structure that we want to pass on to our sub interrupt -- cgit v1.2.3