diff options
Diffstat (limited to 'include/opcode/dlx.h')
-rw-r--r-- | include/opcode/dlx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/opcode/dlx.h b/include/opcode/dlx.h index c3476e7..1d53c52 100644 --- a/include/opcode/dlx.h +++ b/include/opcode/dlx.h @@ -143,7 +143,7 @@ struct dlx_opcode { /* Name of the instruction. */ - char *name; + const char *name; /* Opcode word. */ unsigned long opcode; @@ -161,7 +161,7 @@ struct dlx_opcode D An immediate operand is in bits 0-25 of the instruction. N No opperands needed, for nops. P it can be a register or a 16 bit operand. */ - char *args; + const char *args; }; static const struct dlx_opcode dlx_opcodes[] = |