summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/hd6309/6309ops.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/hd6309/6309ops.c')
-rw-r--r--src/emu/cpu/hd6309/6309ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/hd6309/6309ops.c b/src/emu/cpu/hd6309/6309ops.c
index ed3e6098584..3894d49404c 100644
--- a/src/emu/cpu/hd6309/6309ops.c
+++ b/src/emu/cpu/hd6309/6309ops.c
@@ -1344,7 +1344,7 @@ INLINE void swi( void )
#define decodePB_dst(n) (((n) >> 0) & 0x07)
static UINT8 dummy_byte;
-static unsigned char *regTable[4] = { &(CC), &(A), &(B), &dummy_byte };
+static unsigned char *const regTable[4] = { &(CC), &(A), &(B), &dummy_byte };
static const UINT8 bitTable[] = { 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 };