summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/i8008/8008dasm.c
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2010-06-17 14:04:37 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2010-06-17 14:04:37 +0000
commit809c406e3527f875c6b0941d5927de1c4330bd3b (patch)
tree8ad5eb5da8c39cd1fd263493b18865118565f7cf /src/emu/cpu/i8008/8008dasm.c
parentd2a7b5f332d42f1a7d47102cecd4dcadd3d15acd (diff)
Added many instances of missing static and const qualifiers to MAME, and disabled a fair chunk of dead code in konamiic.c. [Atari Ace]
Diffstat (limited to 'src/emu/cpu/i8008/8008dasm.c')
-rw-r--r--src/emu/cpu/i8008/8008dasm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/i8008/8008dasm.c b/src/emu/cpu/i8008/8008dasm.c
index 50cb5d7b994..221ac3c3230 100644
--- a/src/emu/cpu/i8008/8008dasm.c
+++ b/src/emu/cpu/i8008/8008dasm.c
@@ -13,8 +13,8 @@
#define OP(A) oprom[(A) - PC]
#define ARG(A) opram[(A) - PC]
-static char reg[] = { 'a', 'b', 'c', 'd', 'e', 'h', 'l', 'm' };
-static char flag_names[] = { 'c', 'z', 's', 'p' };
+static const char reg[] = { 'a', 'b', 'c', 'd', 'e', 'h', 'l', 'm' };
+static const char flag_names[] = { 'c', 'z', 's', 'p' };
CPU_DISASSEMBLE( i8008 )
{