mirror of https://github.com/xemu-project/xemu.git
Unbreak the last patch.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2303 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
f7bcd4e373
commit
2909b29aee
|
@ -9,7 +9,7 @@
|
||||||
*/
|
*/
|
||||||
#include "vl.h"
|
#include "vl.h"
|
||||||
|
|
||||||
#ifdef TARGET_BIG_ENDIAN
|
#ifdef TARGET_WORDS_BIGENDIAN
|
||||||
#define BIOS_FILENAME "mips_bios.bin"
|
#define BIOS_FILENAME "mips_bios.bin"
|
||||||
#else
|
#else
|
||||||
#define BIOS_FILENAME "mipsel_bios.bin"
|
#define BIOS_FILENAME "mipsel_bios.bin"
|
||||||
|
@ -165,7 +165,7 @@ void mips_r4k_init (int ram_size, int vga_ram_size, int boot_device,
|
||||||
bios_offset = ram_size + vga_ram_size;
|
bios_offset = ram_size + vga_ram_size;
|
||||||
snprintf(buf, sizeof(buf), "%s/%s", bios_dir, BIOS_FILENAME);
|
snprintf(buf, sizeof(buf), "%s/%s", bios_dir, BIOS_FILENAME);
|
||||||
bios_size = load_image(buf, phys_ram_base + bios_offset);
|
bios_size = load_image(buf, phys_ram_base + bios_offset);
|
||||||
if (bios_size > 0 & bios_size <= BIOS_SIZE) {
|
if ((bios_size > 0) && (bios_size <= BIOS_SIZE)) {
|
||||||
cpu_register_physical_memory((uint32_t)(0x1fc00000),
|
cpu_register_physical_memory((uint32_t)(0x1fc00000),
|
||||||
BIOS_SIZE, bios_offset | IO_MEM_ROM);
|
BIOS_SIZE, bios_offset | IO_MEM_ROM);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue