diff options
author | Fred Fish <fnf@specifix.com> | 1997-01-06 17:51:13 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1997-01-06 17:51:13 +0000 |
commit | 547435564c6b143e31dd977b59e1d1cf64f03265 (patch) | |
tree | 74c4b6c646a130191bcbde2464b2a0aa0011b29b /include/opcode | |
parent | 937fe722327e674b973b90e37bc4b03a99597805 (diff) | |
download | gdb-547435564c6b143e31dd977b59e1d1cf64f03265.zip gdb-547435564c6b143e31dd977b59e1d1cf64f03265.tar.gz gdb-547435564c6b143e31dd977b59e1d1cf64f03265.tar.bz2 |
* tic80.h (TIC80_OPERAND_SCALED): Operand may have optional
":s" modifier for scaling.
Diffstat (limited to 'include/opcode')
-rw-r--r-- | include/opcode/ChangeLog | 5 | ||||
-rw-r--r-- | include/opcode/tic80.h | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 93fabd8..e40413a 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,4 +1,9 @@ start-sanitize-tic80 +Mon Jan 6 10:51:15 1997 Fred Fish <fnf@cygnus.com> + + * tic80.h (TIC80_OPERAND_SCALED): Operand may have optional + ":s" modifier for scaling. + Sun Jan 5 12:12:19 1997 Fred Fish <fnf@cygnus.com> * tic80.h (TIC80_OPERAND_M_SI): Add operand modifier for ":m". diff --git a/include/opcode/tic80.h b/include/opcode/tic80.h index 5ec2747..ef24c9c 100644 --- a/include/opcode/tic80.h +++ b/include/opcode/tic80.h @@ -173,6 +173,10 @@ extern const struct tic80_operand tic80_operands[]; immediate or register form instruction. */ #define TIC80_OPERAND_M_LI (02000) +/* This operand may have a ":s" modifier specified in bit 11 in a long + immediate or register form instruction. */ +#define TIC80_OPERAND_SCALED (04000) + /* Values which go in the struct tic80_opcode format field to distinguish between various types of instructions with the same mnemonic. FIXME: Not currently used? */ |