diff options
Diffstat (limited to 'include/opcode')
-rw-r--r-- | include/opcode/i960.h | 2 | ||||
-rw-r--r-- | include/opcode/tic4x.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/opcode/i960.h b/include/opcode/i960.h index 0904e1b..be3ac10 100644 --- a/include/opcode/i960.h +++ b/include/opcode/i960.h @@ -134,7 +134,7 @@ /* Description of a single i80960 instruction */ struct i960_opcode { long opcode; /* 32 bits, constant fields filled in, rest zeroed */ - char *name; /* Assembler mnemonic */ + const char *name; /* Assembler mnemonic */ short iclass; /* Class: see #defines below */ char format; /* REG, COBR, CTRL, MEMn, COJ, FBRA, or CALLJ */ char num_ops; /* Number of operands */ diff --git a/include/opcode/tic4x.h b/include/opcode/tic4x.h index f95d46a..b4209a1 100644 --- a/include/opcode/tic4x.h +++ b/include/opcode/tic4x.h @@ -226,7 +226,7 @@ struct tic4x_inst const char * name; unsigned long opcode; unsigned long opmask; - char * args; + const char * args; unsigned long oplevel; }; |