diff options
Diffstat (limited to 'hw/realview.c')
-rw-r--r-- | hw/realview.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hw/realview.c b/hw/realview.c index 325b3d1ab3..619739c11c 100644 --- a/hw/realview.c +++ b/hw/realview.c @@ -26,8 +26,9 @@ static void realview_init(int ram_size, int vga_ram_size, int boot_device, int done_smc = 0; env = cpu_init(); - cpu_arm_set_model(env, ARM_CPUID_ARM926); - //cpu_arm_set_model(env, ARM_CPUID_ARM11MPCORE); + if (!cpu_model) + cpu_model = "arm926"; + cpu_arm_set_model(env, cpu_model); /* ??? RAM shoud repeat to fill physical memory space. */ /* SDRAM at address zero. */ cpu_register_physical_memory(0, ram_size, IO_MEM_RAM); |