summaryrefslogtreecommitdiff
path: root/src/devices/emulator
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/emulator')
-rw-r--r--src/devices/emulator/pcbios/pcibios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/emulator/pcbios/pcibios.c b/src/devices/emulator/pcbios/pcibios.c
index 1517d2a7fb..be5c91a0f1 100644
--- a/src/devices/emulator/pcbios/pcibios.c
+++ b/src/devices/emulator/pcbios/pcibios.c
@@ -16,7 +16,7 @@ int pcibios_handler()
case PCI_BIOS_PRESENT:
X86_AH = 0x00; /* no config space/special cycle support */
X86_AL = 0x01; /* config mechanism 1 */
- X86_EDX = 'P' | 'C' << 8 | 'I' | ' ' << 24;
+ X86_EDX = 'P' | 'C' << 8 | 'I' << 16 | ' ' << 24;
X86_EBX = 0x0210; /* Version 2.10 */
X86_ECX = 0xFF00; /* FixME: Max bus number */
X86_EFLAGS &= ~FB_CF; /* clear carry flag */