diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-06-14 15:02:05 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-06-14 15:02:05 +0000 |
commit | eda9b09b1df1efea4275baadb9743ff5124bd7c2 (patch) | |
tree | 8f7e9abf255787610f90f4a0be68c3c42dc6c50c /target-sh4/exec.h | |
parent | 191f9a93f48ba8859bbbc8d5ac9b401568c2c6f4 (diff) |
sh4 fmov et al instructions (amatus)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1971 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sh4/exec.h')
-rw-r--r-- | target-sh4/exec.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-sh4/exec.h b/target-sh4/exec.h index c219fef917..b828206121 100644 --- a/target-sh4/exec.h +++ b/target-sh4/exec.h @@ -28,6 +28,11 @@ register uint32_t T0 asm(AREG1); register uint32_t T1 asm(AREG2); register uint32_t T2 asm(AREG3); +#define FT0 (env->ft0) +#define FT1 (env->ft1) +#define DT0 (env->dt0) +#define DT1 (env->dt1) + #include "cpu.h" #include "exec-all.h" |