summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bbc
diff options
context:
space:
mode:
author Nigel Barnes <Pernod70@users.noreply.github.com>2019-01-26 15:04:01 +0000
committer Nigel Barnes <Pernod70@users.noreply.github.com>2019-01-26 15:05:54 +0000
commit24937b137302a9e5fe3694014b284ba195a40402 (patch)
tree65c0be0e5dff231c3d3fcbe74f1cc06bef72ff54 /src/devices/bus/bbc
parentef71903c250bacdb782f8d56e216f79c1b943ca0 (diff)
bbc_sprite: INT line is passed back through 1MHz bus (nw)
Diffstat (limited to 'src/devices/bus/bbc')
-rw-r--r--src/devices/bus/bbc/1mhzbus/sprite.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/bus/bbc/1mhzbus/sprite.cpp b/src/devices/bus/bbc/1mhzbus/sprite.cpp
index d898e2cb630..a32ee0bc828 100644
--- a/src/devices/bus/bbc/1mhzbus/sprite.cpp
+++ b/src/devices/bus/bbc/1mhzbus/sprite.cpp
@@ -26,6 +26,7 @@ DEFINE_DEVICE_TYPE(BBC_SPRITE, bbc_sprite_device, "bbc_sprite", "Logotron Sprite
void bbc_sprite_device::device_add_mconfig(machine_config &config)
{
TMS9129(config, m_vdp, 10.738635_MHz_XTAL);
+ m_vdp->int_callback().set(DEVICE_SELF_OWNER, FUNC(bbc_1mhzbus_slot_device::irq_w));
m_vdp->set_screen("screen");
m_vdp->set_vram_size(0x4000);