summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/asap/asapdasm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/asap/asapdasm.c')
-rw-r--r--src/emu/cpu/asap/asapdasm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/cpu/asap/asapdasm.c b/src/emu/cpu/asap/asapdasm.c
index 43f25e6fcea..4397dc56fb7 100644
--- a/src/emu/cpu/asap/asapdasm.c
+++ b/src/emu/cpu/asap/asapdasm.c
@@ -9,7 +9,7 @@
#include "asap.h"
-static const char *reg[32] =
+static const char *const reg[32] =
{
"0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
"r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
@@ -17,12 +17,12 @@ static const char *reg[32] =
"r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31"
};
-static const char *setcond[2] =
+static const char *const setcond[2] =
{
" ", ".c"
};
-static const char *condition[16] =
+static const char *const condition[16] =
{
"sp", "mz", "gt", "le", "ge", "lt", "hi", "ls", "cc", "cs", "pl", "mi", "ne", "eq", "vc", "vs"
};