diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-13 19:27:22 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-13 19:27:22 +0000 |
commit | 56cd2b96636641af4f2fc5be968cc6901f99a17a (patch) | |
tree | 119b5b36dc132e705c63524a5c04f160388323de /target-sh4/cpu.h | |
parent | f3ff7facf5d41432324606ebb850f1b6dd94c0d2 (diff) |
target-sh4: make the initial value of SR easier to read
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6016 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sh4/cpu.h')
-rw-r--r-- | target-sh4/cpu.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target-sh4/cpu.h b/target-sh4/cpu.h index ec4aacedac..226417f34c 100644 --- a/target-sh4/cpu.h +++ b/target-sh4/cpu.h @@ -49,6 +49,10 @@ #define SR_FD (1 << 15) #define SR_M (1 << 9) #define SR_Q (1 << 8) +#define SR_I3 (1 << 7) +#define SR_I2 (1 << 6) +#define SR_I1 (1 << 5) +#define SR_I0 (1 << 4) #define SR_S (1 << 1) #define SR_T (1 << 0) |