diff options
author | Tomer Levi <Tomer.Levi@nsc.com> | 2004-11-05 10:58:22 +0000 |
---|---|---|
committer | Tomer Levi <Tomer.Levi@nsc.com> | 2004-11-05 10:58:22 +0000 |
commit | dc7e8c1b9542521cd130af822a98a1b7ea2b6a4a (patch) | |
tree | aa6efb023f02011b20a811186c1eb79822f81754 /include/opcode/crx.h | |
parent | 5350aa8b89467fd1dbc4ee6b4da5384c9f101c64 (diff) | |
download | cygnal-dc7e8c1b9542521cd130af822a98a1b7ea2b6a4a.tar.gz cygnal-dc7e8c1b9542521cd130af822a98a1b7ea2b6a4a.tar.bz2 cygnal-dc7e8c1b9542521cd130af822a98a1b7ea2b6a4a.zip |
2004-11-05 Tomer Levi <Tomer.Levi@nsc.com>
* opcode/crx.h (enum argtype): Rename types, remove unused types.
Diffstat (limited to 'include/opcode/crx.h')
-rw-r--r-- | include/opcode/crx.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/opcode/crx.h b/include/opcode/crx.h index 033b268b0..ab194f535 100644 --- a/include/opcode/crx.h +++ b/include/opcode/crx.h @@ -93,9 +93,8 @@ reg_type; Argument types : r - register c - constant - d - displacement - ic - immediate - icr - index register + i - immediate + idxr - index register rbase - register base s - star ('*') copr - coprocessor register @@ -103,8 +102,8 @@ reg_type; typedef enum { - arg_r, arg_c, arg_cr, arg_dc, arg_dcr, arg_sc, - arg_ic, arg_icr, arg_rbase, arg_copr, arg_copsr, + arg_r, arg_c, arg_cr, arg_ic, arg_icr, arg_sc, + arg_idxr, arg_rbase, arg_copr, arg_copsr, /* Not an argument. */ nullargs } |