mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 18:39:34 +08:00
* tic80.h (TIC80_OPERAND_BITNUM): Renamed from TIC80_OPERAND_CC_SZ.
(TIC80_OPERAND_CC): New define for condition code operand. (TIC80_OPERAND_CR): New define for control register operand.
This commit is contained in:
@ -1,4 +1,10 @@
|
|||||||
start-sanitize-tic80
|
start-sanitize-tic80
|
||||||
|
Sat Jan 4 19:02:44 1997 Fred Fish <fnf@cygnus.com>
|
||||||
|
|
||||||
|
* tic80.h (TIC80_OPERAND_BITNUM): Renamed from TIC80_OPERAND_CC_SZ.
|
||||||
|
(TIC80_OPERAND_CC): New define for condition code operand.
|
||||||
|
(TIC80_OPERAND_CR): New define for control register operand.
|
||||||
|
|
||||||
Fri Jan 3 16:22:23 1997 Fred Fish <fnf@cygnus.com>
|
Fri Jan 3 16:22:23 1997 Fred Fish <fnf@cygnus.com>
|
||||||
|
|
||||||
* tic80.h (struct tic80_opcode): Name changed.
|
* tic80.h (struct tic80_opcode): Name changed.
|
||||||
|
@ -135,10 +135,9 @@ extern const struct tic80_operand tic80_operands[];
|
|||||||
"displacement(reg)" */
|
"displacement(reg)" */
|
||||||
#define TIC80_OPERAND_PARENS (02)
|
#define TIC80_OPERAND_PARENS (02)
|
||||||
|
|
||||||
/* This operand may use the symbolic names for the condition and size
|
/* This operand is a bit number and may use symbolic names such as "eq.b",
|
||||||
codes that the branch instructions use, such as "eq.b", "or.f",
|
"or.f", etc. */
|
||||||
etc. */
|
#define TIC80_OPERAND_BITNUM (04)
|
||||||
#define TIC80_OPERAND_CC_SZ (04)
|
|
||||||
|
|
||||||
/* This operand names a register. The disassembler uses this to print
|
/* This operand names a register. The disassembler uses this to print
|
||||||
register names with a leading 'r'. */
|
register names with a leading 'r'. */
|
||||||
@ -158,6 +157,14 @@ extern const struct tic80_operand tic80_operands[];
|
|||||||
values and other values are printed in hex. */
|
values and other values are printed in hex. */
|
||||||
#define TIC80_OPERAND_BITFIELD (0100)
|
#define TIC80_OPERAND_BITFIELD (0100)
|
||||||
|
|
||||||
|
/* This operand is a condition code, which may be given symbolically as
|
||||||
|
"eq0.b", "ne0.w", etc. */
|
||||||
|
#define TIC80_OPERAND_CC (0200)
|
||||||
|
|
||||||
|
/* This operand is a control register number, or may also be given
|
||||||
|
symbolically as "EIP", "EPC", etc. */
|
||||||
|
#define TIC80_OPERAND_CR (0400)
|
||||||
|
|
||||||
/* Values which go in the struct tic80_opcode format field to distinguish
|
/* Values which go in the struct tic80_opcode format field to distinguish
|
||||||
between various types of instructions with the same mnemonic. FIXME: Not
|
between various types of instructions with the same mnemonic. FIXME: Not
|
||||||
currently used? */
|
currently used? */
|
||||||
|
Reference in New Issue
Block a user