OSDN Git Service

moved mp config table to a safer place
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 17 Dec 2005 14:02:29 +0000 (14:02 +0000)
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sat, 17 Dec 2005 14:02:29 +0000 (14:02 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1709 c046a42c-6fe2-441c-8c8c-71466251a162

hw/pc.c

diff --git a/hw/pc.c b/hw/pc.c
index 83d601f..41cfdcf 100644 (file)
--- a/hw/pc.c
+++ b/hw/pc.c
@@ -466,7 +466,7 @@ static void bios_add_mptable(uint8_t *bios_data)
     if (smp_cpus <= 1)
         return;
 
-    mp_config_table = bios_data + 0xcc00;
+    mp_config_table = bios_data + 0xb000;
     q = mp_config_table;
     putstr(&q, "PCMP"); /* "PCMP signature */
     putle16(&q, 0); /* table length (patched later) */