summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/vsnes.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/vsnes.c')
-rw-r--r--src/mame/machine/vsnes.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/machine/vsnes.c b/src/mame/machine/vsnes.c
index fbcdd2b03fa..13bfddc5dfd 100644
--- a/src/mame/machine/vsnes.c
+++ b/src/mame/machine/vsnes.c
@@ -16,7 +16,7 @@ static int vsnes_do_vrom_bank;
/* Locals */
static int input_latch[4];
-static UINT8 *remapped_colortable;
+static const UINT8 *remapped_colortable;
static int sound_fix=0;
/*************************************
@@ -27,7 +27,7 @@ static int sound_fix=0;
/* RP2C04-001 */
/* check 0x08 */
-static UINT8 rp2c04001_colortable[] =
+static const UINT8 rp2c04001_colortable[] =
{
0x35, 0xff, 0x16, 0x22, 0x1c, 0xff, 0xff, 0x15, /* 0x00 - 0x07 */
0x20, 0x00, 0x27, 0x05, 0x04, 0x27, 0x08, 0x30, /* 0x08 - 0x0f */
@@ -41,7 +41,7 @@ static UINT8 rp2c04001_colortable[] =
/* RP2C04-002 */
/* 0x04, 0x24 */
-static UINT8 rp2c04002_colortable[] =
+static const UINT8 rp2c04002_colortable[] =
{
0xff, 0x27, 0x18, 0xff, 0x3a, 0x25, 0x2b, 0x31, /* 0x00 - 0x07 */
0x15, 0x13, 0x38, 0x34, 0x20, 0x23, 0xff, 0x0b, /* 0x08 - 0x0f */
@@ -55,7 +55,7 @@ static UINT8 rp2c04002_colortable[] =
/* RP2C04-003 */
/* check 0x0f, 0x2e, 0x34 */
-static UINT8 rp2c04003_colortable[] =
+static const UINT8 rp2c04003_colortable[] =
{
0xff, 0xff, 0xff, 0x10, 0x1a, 0x30, 0x31, 0x09, /* 0x00 - 0x07 */
0x01, 0x0f, 0x36, 0x08, 0x15, 0xff, 0xff, 0x30, /* 0x08 - 0x0f */
@@ -69,7 +69,7 @@ static UINT8 rp2c04003_colortable[] =
/* RP2C05-004 */
/* check 0x03 0x1d, 0x38, 0x3b*/
-static UINT8 rp2c05004_colortable[] =
+static const UINT8 rp2c05004_colortable[] =
{
0x18, 0xff, 0x1c, 0x89, 0xff, 0xff, 0x01, 0x17, /* 0x00 - 0x07 */
0x10, 0x0f, 0x2a, 0xff, 0x36, 0x37, 0x1a, 0xff, /* 0x08 - 0x0f */
@@ -1075,7 +1075,7 @@ DRIVER_INIT( supxevs )
static READ8_HANDLER( tko_security_r )
{
static int security_counter;
- static UINT8 security_data[] = {
+ static const UINT8 security_data[] = {
0xff, 0xbf, 0xb7, 0x97, 0x97, 0x17, 0x57, 0x4f,
0x6f, 0x6b, 0xeb, 0xa9, 0xb1, 0x90, 0x94, 0x14,
0x56, 0x4e, 0x6f, 0x6b, 0xeb, 0xa9, 0xb1, 0x90,