diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-12-17 14:02:29 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-12-17 14:02:29 +0000 |
commit | 87022ff52b7de5b2836a7f9d4b8a1727e1cc2ff7 (patch) | |
tree | fa5f85e7b80e31e87fb7c1847df49f5cfce58fa2 | |
parent | cd072e01d86b3d7adab35de03d242e3938e798df (diff) | |
download | qemu-87022ff52b7de5b2836a7f9d4b8a1727e1cc2ff7.zip qemu-87022ff52b7de5b2836a7f9d4b8a1727e1cc2ff7.tar.gz qemu-87022ff52b7de5b2836a7f9d4b8a1727e1cc2ff7.tar.bz2 |
moved mp config table to a safer place
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1709 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | hw/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) */ |