summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/hd6309/hd6309.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/hd6309/hd6309.c')
-rw-r--r--src/emu/cpu/hd6309/hd6309.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/cpu/hd6309/hd6309.c b/src/emu/cpu/hd6309/hd6309.c
index a9105ff3de9..0c9ff68904e 100644
--- a/src/emu/cpu/hd6309/hd6309.c
+++ b/src/emu/cpu/hd6309/hd6309.c
@@ -277,10 +277,10 @@ static int hd6309_ICount;
#define SET_FLAGS8I(a) {CC|=flags8i[(a)&0xff];}
#define SET_FLAGS8D(a) {CC|=flags8d[(a)&0xff];}
-static UINT8 *cycle_counts_page0;
-static UINT8 *cycle_counts_page01;
-static UINT8 *cycle_counts_page11;
-static UINT8 *index_cycle;
+static UINT8 const *cycle_counts_page0;
+static UINT8 const *cycle_counts_page01;
+static UINT8 const *cycle_counts_page11;
+static UINT8 const *index_cycle;
/* combos */
#define SET_NZ8(a) {SET_N8(a);SET_Z(a);}