summaryrefslogtreecommitdiffstats
path: root/hw/mips_fulong2e.c
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2010-10-22 18:26:08 +0000
committerBlue Swirl <blauwirbel@gmail.com>2010-10-22 18:26:08 +0000
commit5340c8a0f358f2dccf9b1a92da15c9f9fd25096f (patch)
tree2f335f2cf49fd5db33cf8aeaa6fac0caf2702809 /hw/mips_fulong2e.c
parent2c80e42395bfe0bf291c082f9399431e1ff9d758 (diff)
downloadhqemu-5340c8a0f358f2dccf9b1a92da15c9f9fd25096f.zip
hqemu-5340c8a0f358f2dccf9b1a92da15c9f9fd25096f.tar.gz
mips_fulong2e: fix ram allocation
RAM registration used incorrect offset. Fix by using the offset obtained previously for this purpose. Spotted by GCC 4.6.0 20100925 warning, which is also avoided. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/mips_fulong2e.c')
-rw-r--r--hw/mips_fulong2e.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mips_fulong2e.c b/hw/mips_fulong2e.c
index f9723f5..07eb9ee 100644
--- a/hw/mips_fulong2e.c
+++ b/hw/mips_fulong2e.c
@@ -295,7 +295,7 @@ static void mips_fulong2e_init(ram_addr_t ram_size, const char *boot_device,
ram_offset = qemu_ram_alloc(NULL, "fulong2e.ram", ram_size);
bios_offset = qemu_ram_alloc(NULL, "fulong2e.bios", bios_size);
- cpu_register_physical_memory(0, ram_size, IO_MEM_RAM);
+ cpu_register_physical_memory(0, ram_size, ram_offset);
cpu_register_physical_memory(0x1fc00000LL,
bios_size, bios_offset | IO_MEM_ROM);
OpenPOWER on IntegriCloud