diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-21 11:31:14 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-21 11:31:14 +0000 |
commit | e1571908a28b1707f63392541be30990160af31c (patch) | |
tree | 9ccdcf0c78a25dbf272dc1f7d66991dee6144a6e /target-ppc/cpu.h | |
parent | bdffd4a9d7254a765e56132587bc814195e094a2 (diff) |
target-ppc: convert crf related instructions to TCG
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5505 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/cpu.h')
-rw-r--r-- | target-ppc/cpu.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index 4422411e7b..ef7a4552d3 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -829,7 +829,13 @@ static inline void cpu_clone_regs(CPUState *env, target_ulong newsp) #include "cpu-all.h" /*****************************************************************************/ -/* Registers definitions */ +/* CRF definitions */ +#define CRF_LT 3 +#define CRF_GT 2 +#define CRF_EQ 1 +#define CRF_SO 0 + +/* XER definitions */ #define XER_SO 31 #define XER_OV 30 #define XER_CA 29 |