diff options
Diffstat (limited to 'hw/mcf5208.c')
-rw-r--r-- | hw/mcf5208.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/hw/mcf5208.c b/hw/mcf5208.c index bcb1c80beb..93f78906d3 100644 --- a/hw/mcf5208.c +++ b/hw/mcf5208.c @@ -209,11 +209,12 @@ static void mcf5208evb_init(int ram_size, int vga_ram_size, target_ulong entry; qemu_irq *pic; - env = cpu_init(); if (!cpu_model) cpu_model = "m5208"; - if (cpu_m68k_set_model(env, cpu_model)) { - cpu_abort(env, "Unable to find m68k CPU definition\n"); + env = cpu_init(cpu_model); + if (!env) { + fprintf(stderr, "Unable to find m68k CPU definition\n"); + exit(1); } /* Initialize CPU registers. */ |