diff options
author | Paul Brook <paul@codesourcery.com> | 2009-05-08 02:35:15 +0100 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2009-05-08 02:35:15 +0100 |
commit | 2ac711791b2e4aabc5e4046b7428727828c705eb (patch) | |
tree | c4ed47028dee4949cc7eace9760a20d1759406e2 /hw/an5206.c | |
parent | e612a1f7256bb3546cf3e9ae6cad3997c4153663 (diff) |
Replace cpu_abort with hw_error
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/an5206.c')
-rw-r--r-- | hw/an5206.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/an5206.c b/hw/an5206.c index a5e352eb29..7088466bc1 100644 --- a/hw/an5206.c +++ b/hw/an5206.c @@ -41,7 +41,7 @@ static void an5206_init(ram_addr_t ram_size, int vga_ram_size, cpu_model = "m5206"; env = cpu_init(cpu_model); if (!env) { - cpu_abort(env, "Unable to find m68k CPU definition\n"); + hw_error("Unable to find m68k CPU definition\n"); } /* Initialize CPU registers. */ |