diff options
author | Fred Fish <fnf@specifix.com> | 1997-01-30 21:18:55 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1997-01-30 21:18:55 +0000 |
commit | f996c7d89830a30cfe2cfe25aca8f7b704640c10 (patch) | |
tree | 6e43db1d3f7f4d01a4716598574eee9ef074bd9b /include/opcode | |
parent | 6cb5b585c554607e8425dff6f70686f69d08a837 (diff) | |
download | gdb-f996c7d89830a30cfe2cfe25aca8f7b704640c10.zip gdb-f996c7d89830a30cfe2cfe25aca8f7b704640c10.tar.gz gdb-f996c7d89830a30cfe2cfe25aca8f7b704640c10.tar.bz2 |
One minor fix I forgot in last checkin.
Diffstat (limited to 'include/opcode')
-rw-r--r-- | include/opcode/tic80.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/opcode/tic80.h b/include/opcode/tic80.h index 4bab83e..4065528 100644 --- a/include/opcode/tic80.h +++ b/include/opcode/tic80.h @@ -231,7 +231,7 @@ extern const struct tic80_operand tic80_operands[]; /* This mask is used to strip operand bits from an int that contains both operand bits and a numeric value in the lsbs. */ -#define TIC80_OPERAND_MASK (OPERAND_GPR | OPERAND_FPA | OPERAND_CR | OPERAND_CC | OPERAND_BITNUM) +#define TIC80_OPERAND_MASK (TIC80_OPERAND_GPR | TIC80_OPERAND_FPA | TIC80_OPERAND_CR | TIC80_OPERAND_CC | TIC80_OPERAND_BITNUM) /* Flag bits for the struct tic80_opcode flags field. */ |