diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-09-02 07:27:38 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-09-15 17:44:32 +0000 |
commit | 31871141521225d089b7705a5d73bf03c605c964 (patch) | |
tree | 182accce5427dd712b9698a00547d438da40df5b /target-m68k/helpers.h | |
parent | 32ac0ca2ecc0ea0eb6b868abcbe0a7d094870cfd (diff) |
target-m68k: switch to AREG0 free mode
Add an explicit CPUState parameter instead of relying on AREG0
and switch to AREG0 free mode.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-m68k/helpers.h')
-rw-r--r-- | target-m68k/helpers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-m68k/helpers.h b/target-m68k/helpers.h index cb8a0c7d4a..8112b44a58 100644 --- a/target-m68k/helpers.h +++ b/target-m68k/helpers.h @@ -49,6 +49,6 @@ DEF_HELPER_3(set_mac_exts, void, env, i32, i32) DEF_HELPER_3(set_mac_extu, void, env, i32, i32) DEF_HELPER_2(flush_flags, void, env, i32) -DEF_HELPER_1(raise_exception, void, i32) +DEF_HELPER_2(raise_exception, void, env, i32) #include "def-helper.h" |