diff options
author | 2015-06-30 09:02:11 -0500 | |
---|---|---|
committer | 2015-07-08 23:37:59 -0500 | |
commit | 8db46d73a25701178d8acc93510a6e81a86b3c4b (patch) | |
tree | 9248dd9388fb86f64be05e7d9c06b20f1bb3950c /src/mess/drivers/abc80.c | |
parent | 1a32c4b76007999073b353532f74e7acee4b0491 (diff) |
more pedantic fixes (NW)
Diffstat (limited to 'src/mess/drivers/abc80.c')
-rw-r--r-- | src/mess/drivers/abc80.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/drivers/abc80.c b/src/mess/drivers/abc80.c index b64cb786b44..101f4e8865e 100644 --- a/src/mess/drivers/abc80.c +++ b/src/mess/drivers/abc80.c @@ -269,7 +269,7 @@ READ8_MEMBER( abc80_state::pio_pa_r ) data |= (m_key_strobe << 7); return data; -}; +} READ8_MEMBER( abc80_state::pio_pb_r ) { @@ -305,7 +305,7 @@ READ8_MEMBER( abc80_state::pio_pb_r ) if (LOG) logerror("%s %s read tape latch %u\n", machine().time().as_string(), machine().describe_context(), m_tape_in_latch); return data; -}; +} WRITE8_MEMBER( abc80_state::pio_pb_w ) { @@ -356,7 +356,7 @@ WRITE8_MEMBER( abc80_state::pio_pb_w ) m_pio->pb7_w(m_tape_in_latch); } -}; +} //------------------------------------------------- |