mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
Fix malta emulation for 64bit qemu.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2355 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
6070dd07e9
commit
44cbbf18b9
2 changed files with 21 additions and 14 deletions
|
@ -14,7 +14,7 @@
|
|||
#else
|
||||
#define BIOS_FILENAME "mipsel_bios.bin"
|
||||
#endif
|
||||
//#define BIOS_FILENAME "system.bin"
|
||||
|
||||
#ifdef MIPS_HAS_MIPS64
|
||||
#define INITRD_LOAD_ADDR (int64_t)(int32_t)0x80800000
|
||||
#else
|
||||
|
@ -112,8 +112,8 @@ void load_kernel (CPUState *env, int ram_size, const char *kernel_filename,
|
|||
strcpy (phys_ram_base + (16 << 20) - 256, kernel_cmdline);
|
||||
}
|
||||
|
||||
*(int *)(phys_ram_base + (16 << 20) - 260) = tswap32 (0x12345678);
|
||||
*(int *)(phys_ram_base + (16 << 20) - 264) = tswap32 (ram_size);
|
||||
*(int32_t *)(phys_ram_base + (16 << 20) - 260) = tswap32 (0x12345678);
|
||||
*(int32_t *)(phys_ram_base + (16 << 20) - 264) = tswap32 (ram_size);
|
||||
}
|
||||
|
||||
static void main_cpu_reset(void *opaque)
|
||||
|
@ -159,7 +159,7 @@ void mips_r4k_init (int ram_size, int vga_ram_size, int boot_device,
|
|||
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)) {
|
||||
cpu_register_physical_memory((uint32_t)(0x1fc00000),
|
||||
cpu_register_physical_memory(0x1fc00000,
|
||||
BIOS_SIZE, bios_offset | IO_MEM_ROM);
|
||||
} else {
|
||||
/* not fatal */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue