summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-12-31 00:12:30 -0500
committer AJR <ajrhacker@users.noreply.github.com>2017-12-31 00:12:30 -0500
commit624d7a18c1f0afaafd46cf91599f1fc07c29d2b2 (patch)
treed3d02347b231ad7519eeb9257c6e080feb88a16f
parent16f6a945d19fca9b86348d7a5ba71fb8abc84394 (diff)
vtvideo: Make this a line callback (nw)
-rw-r--r--src/mame/drivers/vt100.cpp2
-rw-r--r--src/mame/video/vtvideo.cpp2
-rw-r--r--src/mame/video/vtvideo.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/vt100.cpp b/src/mame/drivers/vt100.cpp
index 986a8f10d03..a9e98a77ae4 100644
--- a/src/mame/drivers/vt100.cpp
+++ b/src/mame/drivers/vt100.cpp
@@ -116,7 +116,7 @@ ADDRESS_MAP_END
READ8_MEMBER( vt100_state::vt100_flags_r )
{
uint8_t ret = 0;
- ret |= m_crtc->lba7_r(space, 0) << 6;
+ ret |= m_crtc->lba7_r() << 6;
ret |= m_keyboard_int << 7;
return ret;
}
diff --git a/src/mame/video/vtvideo.cpp b/src/mame/video/vtvideo.cpp
index fe9cd7a9939..065fae0703d 100644
--- a/src/mame/video/vtvideo.cpp
+++ b/src/mame/video/vtvideo.cpp
@@ -219,7 +219,7 @@ void vt100_video_device::recompute_parameters()
}
-READ8_MEMBER(vt100_video_device::lba7_r)
+READ_LINE_MEMBER(vt100_video_device::lba7_r)
{
return m_lba7;
}
diff --git a/src/mame/video/vtvideo.h b/src/mame/video/vtvideo.h
index 0ee19251512..c8509c63ef3 100644
--- a/src/mame/video/vtvideo.h
+++ b/src/mame/video/vtvideo.h
@@ -26,7 +26,7 @@ public:
static void set_chargen_tag(device_t &device, const char *tag) { downcast<vt100_video_device &>(device).m_char_rom.set_tag(tag); }
- DECLARE_READ8_MEMBER(lba7_r);
+ DECLARE_READ_LINE_MEMBER(lba7_r);
DECLARE_WRITE8_MEMBER(dc012_w);
DECLARE_WRITE8_MEMBER(dc011_w);
DECLARE_WRITE8_MEMBER(brightness_w);