summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/mb86233/mb86233d.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/mb86233/mb86233d.c')
-rw-r--r--src/emu/cpu/mb86233/mb86233d.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/mb86233/mb86233d.c b/src/emu/cpu/mb86233/mb86233d.c
index fce114b8ee6..75db825c20f 100644
--- a/src/emu/cpu/mb86233/mb86233d.c
+++ b/src/emu/cpu/mb86233/mb86233d.c
@@ -538,8 +538,8 @@ unsigned dasm_mb86233(char *buffer, UINT32 opcode )
case 0x0e: /* Load 24 bit val */
{
- UINT32 sub=(opcode>>24)&0x3;
- const char regs[4] = { 'p', 'a', 'b', 'd' };
+ UINT32 sub=(opcode>>24)&0x3;
+ static const char regs[4] = { 'p', 'a', 'b', 'd' };
p += sprintf(p,"LDIMM24 0x%X->%c",opcode&0xffffff, regs[sub]);
}