summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/aztarac.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/aztarac.c')
-rw-r--r--src/mame/audio/aztarac.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/audio/aztarac.c b/src/mame/audio/aztarac.c
index be011372708..a6af93ab736 100644
--- a/src/mame/audio/aztarac.c
+++ b/src/mame/audio/aztarac.c
@@ -11,7 +11,7 @@
READ16_MEMBER(aztarac_state::aztarac_sound_r)
{
- return m_sound_status & 0x01;
+ return m_sound_status & 0x01;
}
WRITE16_MEMBER(aztarac_state::aztarac_sound_w)
@@ -28,25 +28,25 @@ WRITE16_MEMBER(aztarac_state::aztarac_sound_w)
READ8_MEMBER(aztarac_state::aztarac_snd_command_r)
{
- m_sound_status |= 0x01;
- m_sound_status &= ~0x20;
- return soundlatch_byte_r(space,offset);
+ m_sound_status |= 0x01;
+ m_sound_status &= ~0x20;
+ return soundlatch_byte_r(space,offset);
}
READ8_MEMBER(aztarac_state::aztarac_snd_status_r)
{
- return m_sound_status & ~0x01;
+ return m_sound_status & ~0x01;
}
WRITE8_MEMBER(aztarac_state::aztarac_snd_status_w)
{
- m_sound_status &= ~0x10;
+ m_sound_status &= ~0x10;
}
INTERRUPT_GEN_MEMBER(aztarac_state::aztarac_snd_timed_irq)
{
- m_sound_status ^= 0x10;
+ m_sound_status ^= 0x10;
- if (m_sound_status & 0x10)
- device.execute().set_input_line(0,HOLD_LINE);
+ if (m_sound_status & 0x10)
+ device.execute().set_input_line(0,HOLD_LINE);
}