summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-03-05 09:53:53 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-03-05 09:53:53 +0000
commit6c3e96102eab6cd6374ff734b79ee1d1560dd263 (patch)
tree09a0726a85aee6dd404a89cc5bd2576d312501d4
parent99d297a6fd4623eef4a3195d8c97c1a3a57bb592 (diff)
Fix build break.mame0129u6
-rw-r--r--src/mame/drivers/cischeat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/cischeat.c b/src/mame/drivers/cischeat.c
index e7ce2d061a2..859f8729ae6 100644
--- a/src/mame/drivers/cischeat.c
+++ b/src/mame/drivers/cischeat.c
@@ -502,7 +502,7 @@ static WRITE16_HANDLER( scudhamm_paletteram16_w )
}
-static UINT16 scudhamm_motor_command;
+UINT16 scudhamm_motor_command;
/* Motor Status.
@@ -512,14 +512,14 @@ static UINT16 scudhamm_motor_command;
---- ---- ---- --1- Up Limit
---- ---- ---- ---0 Down Limit */
-static READ16_HANDLER( scudhamm_motor_status_r )
+READ16_HANDLER( scudhamm_motor_status_r )
{
// return 1 << (mame_rand(space->machine)&1); // Motor Status
return scudhamm_motor_command; // Motor Status
}
-static READ16_HANDLER( scudhamm_motor_pos_r )
+READ16_HANDLER( scudhamm_motor_pos_r )
{
return 0x00 << 8;
}
@@ -539,7 +539,7 @@ static WRITE16_HANDLER( scudhamm_motor_command_w )
}
-static READ16_HANDLER( scudhamm_analog_r )
+READ16_HANDLER( scudhamm_analog_r )
{
return input_port_read(space->machine, "IN1");
}