vtvideo: Make this a line callback (nw)

This commit is contained in:
AJR 2017-12-31 00:12:30 -05:00
parent 16f6a945d1
commit 624d7a18c1
3 changed files with 3 additions and 3 deletions

View File

@ -116,7 +116,7 @@ ADDRESS_MAP_END
READ8_MEMBER( vt100_state::vt100_flags_r ) READ8_MEMBER( vt100_state::vt100_flags_r )
{ {
uint8_t ret = 0; uint8_t ret = 0;
ret |= m_crtc->lba7_r(space, 0) << 6; ret |= m_crtc->lba7_r() << 6;
ret |= m_keyboard_int << 7; ret |= m_keyboard_int << 7;
return ret; return ret;
} }

View File

@ -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; return m_lba7;
} }

View File

@ -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); } 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(dc012_w);
DECLARE_WRITE8_MEMBER(dc011_w); DECLARE_WRITE8_MEMBER(dc011_w);
DECLARE_WRITE8_MEMBER(brightness_w); DECLARE_WRITE8_MEMBER(brightness_w);