]> Git Repo - qemu.git/blobdiff - hw/smc91c111.c
Replace cpu_abort with hw_error
[qemu.git] / hw / smc91c111.c
index 9f567aba75ce661e415b7e0968a8514fbaec2c2a..e294f51cd9e75bc7993a3f843f6d9252b8e381d2 100644 (file)
@@ -413,8 +413,7 @@ static void smc91c111_writeb(void *opaque, target_phys_addr_t offset,
         }
         break;
     }
-    cpu_abort (cpu_single_env, "smc91c111_write: Bad reg %d:%x\n",
-               s->bank, (int)offset);
+    hw_error("smc91c111_write: Bad reg %d:%x\n", s->bank, (int)offset);
 }
 
 static uint32_t smc91c111_readb(void *opaque, target_phys_addr_t offset)
@@ -554,8 +553,7 @@ static uint32_t smc91c111_readb(void *opaque, target_phys_addr_t offset)
         }
         break;
     }
-    cpu_abort (cpu_single_env, "smc91c111_read: Bad reg %d:%x\n",
-               s->bank, (int)offset);
+    hw_error("smc91c111_read: Bad reg %d:%x\n", s->bank, (int)offset);
     return 0;
 }
 
This page took 0.022938 seconds and 4 git commands to generate.