diff options
author | Fred Fish <fnf@specifix.com> | 1997-01-13 22:59:20 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1997-01-13 22:59:20 +0000 |
commit | ed6e7b0897321553bebdea07cbcd1976ab668cfb (patch) | |
tree | 1edcec70a63d4d2f0ced257065f437fc12628793 /include | |
parent | 2da0bc1bf91715c738032d36d3d31d1213acc2bb (diff) | |
download | gdb-ed6e7b0897321553bebdea07cbcd1976ab668cfb.zip gdb-ed6e7b0897321553bebdea07cbcd1976ab668cfb.tar.gz gdb-ed6e7b0897321553bebdea07cbcd1976ab668cfb.tar.bz2 |
* tic80.h (TIC80_OPERAND_FLOAT): Add for floating point operands.
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/ChangeLog | 4 | ||||
-rw-r--r-- | include/opcode/tic80.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index e40413a..095a58a 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,4 +1,8 @@ start-sanitize-tic80 +Mon Jan 13 15:56:38 1997 Fred Fish <fnf@cygnus.com> + + * tic80.h (TIC80_OPERAND_FLOAT): Add for floating point operands. + Mon Jan 6 10:51:15 1997 Fred Fish <fnf@cygnus.com> * tic80.h (TIC80_OPERAND_SCALED): Operand may have optional diff --git a/include/opcode/tic80.h b/include/opcode/tic80.h index ef24c9c..ef59ba8 100644 --- a/include/opcode/tic80.h +++ b/include/opcode/tic80.h @@ -177,6 +177,9 @@ extern const struct tic80_operand tic80_operands[]; immediate or register form instruction. */ #define TIC80_OPERAND_SCALED (04000) +/* This operand is a floating point value */ +#define TIC80_OPERAND_FLOAT (010000) + /* 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? */ |