diff options
author | Michael Walle <michael@walle.cc> | 2013-09-23 20:47:33 +0200 |
---|---|---|
committer | Michael Walle <michael@walle.cc> | 2014-02-04 19:47:39 +0100 |
commit | 667ff9612b786f9bb5b70135811164b48b7d44eb (patch) | |
tree | 82e7dffb9c98421b72a4ae48772bc4b51eed307d /target-lm32/helper.h | |
parent | 8c5edce5b775f98cff2e340427740137bd6847be (diff) |
target-lm32: stop VM on illegal or unknown instruction
Instead of translating the instruction to a no-op, pause the VM and display
a message to the user.
As a side effect, this also works for instructions where the operands are
only known at runtime.
Signed-off-by: Michael Walle <michael@walle.cc>
Diffstat (limited to 'target-lm32/helper.h')
-rw-r--r-- | target-lm32/helper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-lm32/helper.h b/target-lm32/helper.h index ad44fdf808..f4442e0a93 100644 --- a/target-lm32/helper.h +++ b/target-lm32/helper.h @@ -13,5 +13,6 @@ DEF_HELPER_1(rcsr_im, i32, env) DEF_HELPER_1(rcsr_ip, i32, env) DEF_HELPER_1(rcsr_jtx, i32, env) DEF_HELPER_1(rcsr_jrx, i32, env) +DEF_HELPER_1(ill, void, env) #include "exec/def-helper.h" |