aboutsummaryrefslogtreecommitdiff
path: root/sim/h8300/inst.h
diff options
context:
space:
mode:
authorAndrey Volkov <avolkov@transas.com>2002-05-17 19:19:24 +0000
committerAndrey Volkov <avolkov@transas.com>2002-05-17 19:19:24 +0000
commitfc9746026442f6bba46e4b76707f3f52a9f03c40 (patch)
tree573ad6cc6955232786db214cb13b7b4a19bf4905 /sim/h8300/inst.h
parenta8cdafbd4e8dbf81a28d98de6a046bd9bc5cc097 (diff)
downloadgdb-fc9746026442f6bba46e4b76707f3f52a9f03c40.zip
gdb-fc9746026442f6bba46e4b76707f3f52a9f03c40.tar.gz
gdb-fc9746026442f6bba46e4b76707f3f52a9f03c40.tar.bz2
h8300: Add support of EXR register
Diffstat (limited to 'sim/h8300/inst.h')
-rw-r--r--sim/h8300/inst.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sim/h8300/inst.h b/sim/h8300/inst.h
index 51db285..bcf8e4a 100644
--- a/sim/h8300/inst.h
+++ b/sim/h8300/inst.h
@@ -32,6 +32,7 @@ typedef enum
R_ZERO,
R_PC,
R_CCR,
+ R_EXR,
R_HARD_0,
R_LAST,
} reg_type;
@@ -73,7 +74,7 @@ typedef struct
unsigned int regs[9];
int pc;
int ccr;
-
+ int exr;
unsigned char *memory;
unsigned char *eightbit;