diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-22 19:50:28 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-22 19:50:28 +0000 |
commit | 9d92659858e5dfad56148586f5d2351178223979 (patch) | |
tree | 6cd6ae859380ab94bcc4d37016de0a2da02f3cdc /target-sparc/helper.h | |
parent | d3ae49bcf77c7604447ab3e1e90a0df0b539afaa (diff) |
Add software and timer interrupt support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5299 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc/helper.h')
-rw-r--r-- | target-sparc/helper.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target-sparc/helper.h b/target-sparc/helper.h index 9320bc813d..e85ed344b1 100644 --- a/target-sparc/helper.h +++ b/target-sparc/helper.h @@ -31,6 +31,9 @@ DEF_HELPER(target_ulong, helper_cas_asi, (target_ulong addr, \ DEF_HELPER(target_ulong, helper_casx_asi, (target_ulong addr, \ target_ulong val1, \ target_ulong val2, uint32_t asi)) +DEF_HELPER(void, helper_set_softint, (uint64_t value)) +DEF_HELPER(void, helper_clear_softint, (uint64_t value)) +DEF_HELPER(void, helper_write_softint, (uint64_t value)) DEF_HELPER(void, helper_tick_set_count, (void *opaque, uint64_t count)) DEF_HELPER(uint64_t, helper_tick_get_count, (void *opaque)) DEF_HELPER(void, helper_tick_set_limit, (void *opaque, uint64_t limit)) |