summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/meyc8088.c
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2012-07-07 16:49:33 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2012-07-07 16:49:33 +0000
commit374f649fff0dc53575a14328cf6d5cbee1a85081 (patch)
treed75a8ef354193370dd476d5ae9224b4ae196eef7 /src/mame/drivers/meyc8088.c
parent0587a37a6ac83284f4fa7e2f646774f3022045de (diff)
small cleanup
Diffstat (limited to 'src/mame/drivers/meyc8088.c')
-rw-r--r--src/mame/drivers/meyc8088.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/drivers/meyc8088.c b/src/mame/drivers/meyc8088.c
index 75f2ef279e8..a4ecd7c47c2 100644
--- a/src/mame/drivers/meyc8088.c
+++ b/src/mame/drivers/meyc8088.c
@@ -37,7 +37,7 @@ class meyc8088_state : public driver_device
{
public:
meyc8088_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag) ,
+ : driver_device(mconfig, type, tag),
m_maincpu(*this,"maincpu"),
m_vram(*this, "vram"),
m_heartbeat(*this, "heartbeat")
@@ -60,6 +60,7 @@ public:
DECLARE_WRITE8_MEMBER(meyc8088_lights1_w);
DECLARE_WRITE8_MEMBER(meyc8088_lights2_w);
DECLARE_WRITE8_MEMBER(meyc8088_common_w);
+
DECLARE_WRITE_LINE_MEMBER(meyc8088_sound_out);
};
@@ -237,7 +238,6 @@ READ8_MEMBER(meyc8088_state::meyc8088_input_r)
READ8_MEMBER(meyc8088_state::meyc8088_status_r)
{
-
// d0: /CR2
// d1: screen on
// d2: video5
@@ -264,7 +264,6 @@ WRITE8_MEMBER(meyc8088_state::meyc8088_lights2_w)
WRITE8_MEMBER(meyc8088_state::meyc8088_common_w)
{
-
// d0: /CR2
m_status = (m_status & ~1) | (data & 1);