diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-15 06:42:30 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-15 06:42:30 +0000 |
commit | f24f381b2de01c37a811ac06c7d60644fd74a5b5 (patch) | |
tree | 1c3bcbc8ddb98f506c76ab38c2bffac32f7e184f /target-sh4/helper.h | |
parent | 9f4576f08b19f40d870afe5be0f9fa04e8b2b8c0 (diff) |
SH4: sleep instruction bug fix
fix a bug on 'sleep' instruction, which have caused halt of idle task.
As i386 'hlt' instruction does, it should save PC before sleep.
(Shin-ichiro KAWASAKI)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5220 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sh4/helper.h')
-rw-r--r-- | target-sh4/helper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-sh4/helper.h b/target-sh4/helper.h index 994dc0820d..cb157cdb86 100644 --- a/target-sh4/helper.h +++ b/target-sh4/helper.h @@ -6,7 +6,7 @@ DEF_HELPER(void, helper_ldtlb, (void)) DEF_HELPER(void, helper_raise_illegal_instruction, (void)) DEF_HELPER(void, helper_raise_slot_illegal_instruction, (void)) DEF_HELPER(void, helper_debug, (void)) -DEF_HELPER(void, helper_sleep, (void)) +DEF_HELPER(void, helper_sleep, (uint32_t)) DEF_HELPER(void, helper_trapa, (uint32_t)) DEF_HELPER(uint32_t, helper_addv, (uint32_t, uint32_t)) |