diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-31 03:44:26 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-03-31 03:44:26 +0000 |
commit | b26eefb68e7942eeb689c81fd20e67e57ad95cd2 (patch) | |
tree | 3eb9eaf50ba68bae2729a0ce1974bea027dfb3ef /target-arm/helpers.h | |
parent | 2a39bc41cb81e1fbd989e0dc648251a1f745c4db (diff) |
ARM TCG conversion 1/16.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4138 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-arm/helpers.h')
-rw-r--r-- | target-arm/helpers.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target-arm/helpers.h b/target-arm/helpers.h new file mode 100644 index 0000000000..577f5ee402 --- /dev/null +++ b/target-arm/helpers.h @@ -0,0 +1,6 @@ +#ifndef DEF_HELPER +#define DEF_HELPER(name, ret, args) ret helper_##name args; +#endif + +DEF_HELPER(sxtb16, uint32_t, (uint32_t)) +DEF_HELPER(uxtb16, uint32_t, (uint32_t)) |