diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-18 15:05:11 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-18 15:05:11 +0000 |
commit | b533415989c55d929804d56ea4bfb93e8d5ce021 (patch) | |
tree | 40ba34dd58ec84ff196842c1faeb5bcce44d8a89 /hw | |
parent | 82790064116b066531c8b61067509a0fd4169ee0 (diff) |
Only map BIOS space when it was actually loaded.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3408 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw')
-rw-r--r-- | hw/mips_mipssim.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/hw/mips_mipssim.c b/hw/mips_mipssim.c index 6c061636b3..b7b834fc28 100644 --- a/hw/mips_mipssim.c +++ b/hw/mips_mipssim.c @@ -82,7 +82,7 @@ mips_mipssim_init (int ram_size, int vga_ram_size, int boot_device, char buf[1024]; unsigned long bios_offset; CPUState *env; - int ret; + int bios_size; mips_def_t *def; /* Init CPUs. */ @@ -103,25 +103,24 @@ mips_mipssim_init (int ram_size, int vga_ram_size, int boot_device, /* Allocate RAM. */ cpu_register_physical_memory(0, ram_size, IO_MEM_RAM); - /* Map the BIOS / boot exception handler. */ - bios_offset = ram_size + vga_ram_size; - /* Load a BIOS / boot exception handler image. */ + bios_offset = ram_size + vga_ram_size; if (bios_name == NULL) bios_name = BIOS_FILENAME; snprintf(buf, sizeof(buf), "%s/%s", bios_dir, bios_name); - ret = load_image(buf, phys_ram_base + bios_offset); - if ((ret < 0 || ret > BIOS_SIZE) && !kernel_filename) { + bios_size = load_image(buf, phys_ram_base + bios_offset); + if ((bios_size < 0 || bios_size > BIOS_SIZE) && !kernel_filename) { /* Bail out if we have neither a kernel image nor boot vector code. */ fprintf(stderr, "qemu: Could not load MIPS bios '%s', and no -kernel argument was specified\n", buf); exit(1); } else { - /* We have a boot vector start address. */ - env->PC[env->current_tc] = (target_long)0xbfc00000; + /* Map the BIOS / boot exception handler. */ cpu_register_physical_memory(0x1fc00000LL, - ret, bios_offset | IO_MEM_ROM); + bios_size, bios_offset | IO_MEM_ROM); + /* We have a boot vector start address. */ + env->PC[env->current_tc] = (target_long)(int32_t)0xbfc00000; } if (kernel_filename) { |