From 032ab78c7c5c0b1a4172fa84c2f5c54ff9aa5afa Mon Sep 17 00:00:00 2001 From: Lord-Nightmare Date: Sun, 18 Sep 2016 01:02:13 -0400 Subject: [PATCH] comment cleanup (n/w) --- src/mame/drivers/taitosj.cpp | 1 - src/mame/includes/taitosj.h | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mame/drivers/taitosj.cpp b/src/mame/drivers/taitosj.cpp index 858800831b6..de5be007872 100644 --- a/src/mame/drivers/taitosj.cpp +++ b/src/mame/drivers/taitosj.cpp @@ -186,7 +186,6 @@ WRITE8_MEMBER(taitosj_state::sound_command_w) { m_sound_cmd_written = true; m_soundlatch->write(space,0,data); - // figure out NMI State if ((m_sound_cmd_written && (!m_sndnmi_disable)) || m_sound_semaphore) m_audiocpu->set_input_line(INPUT_LINE_NMI, ASSERT_LINE); else diff --git a/src/mame/includes/taitosj.h b/src/mame/includes/taitosj.h index 9ebb3dd5f11..a387d8677d5 100644 --- a/src/mame/includes/taitosj.h +++ b/src/mame/includes/taitosj.h @@ -62,7 +62,7 @@ public: UINT8 m_spacecr_prot_value; UINT8 m_protection_value; UINT32 m_address; - bool m_sndnmi_disable; // AKA "CIOB0" on schematic + bool m_sndnmi_disable; // AKA "CIOB0" on schematic, bit 0 of AY-3-8910 @ IC50 Port B bool m_sound_cmd_written; // 74ls74 1/2 @ GAME BOARD IC42 bool m_sound_semaphore; // 74ls74 2/2 @ GAME BOARD IC42 bitmap_ind16 m_layer_bitmap[3];