summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/arkanoid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/arkanoid.c')
-rw-r--r--src/mame/video/arkanoid.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/video/arkanoid.c b/src/mame/video/arkanoid.c
index b8a7a6b1743..ef3e73a20f9 100644
--- a/src/mame/video/arkanoid.c
+++ b/src/mame/video/arkanoid.c
@@ -61,11 +61,11 @@ WRITE8_HANDLER( arkanoid_d008_w )
}
/* BM: bit 7 is suspected to be MCU reset, the evidence for this is that
- the games tilt mode reset sequence shows the main CPU must be able to
- directly control the reset line of the MCU, else the game will crash
- leaving the tilt screen (as the MCU is now out of sync with main CPU
- which resets itself). This bit is the likely candidate as it is flipped
- early in bootup just prior to accessing the MCU for the first time. */
+ the games tilt mode reset sequence shows the main CPU must be able to
+ directly control the reset line of the MCU, else the game will crash
+ leaving the tilt screen (as the MCU is now out of sync with main CPU
+ which resets itself). This bit is the likely candidate as it is flipped
+ early in bootup just prior to accessing the MCU for the first time. */
if (cpu_gettotalcpu()>1) // Bootlegs don't have the MCU but still set this bit
cpunum_set_input_line(1, INPUT_LINE_RESET, (data & 0x80) ? CLEAR_LINE : ASSERT_LINE);
}