From 2909b29aeea50fc25ea342a39db4c8ef5fd6a716 Mon Sep 17 00:00:00 2001 From: ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> Date: Sat, 6 Jan 2007 02:24:15 +0000 Subject: [PATCH] Unbreak the last patch. --- hw/mips_r4k.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/mips_r4k.c b/hw/mips_r4k.c index 5f5b799..ffed67c 100644 --- a/hw/mips_r4k.c +++ b/hw/mips_r4k.c @@ -9,7 +9,7 @@ */ #include "vl.h" -#ifdef TARGET_BIG_ENDIAN +#ifdef TARGET_WORDS_BIGENDIAN #define BIOS_FILENAME "mips_bios.bin" #else #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; snprintf(buf, sizeof(buf), "%s/%s", bios_dir, BIOS_FILENAME); 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), BIOS_SIZE, bios_offset | IO_MEM_ROM); } else { -- libgit2 0.23.3