summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/svi3x8/expander/sv603.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/svi3x8/expander/sv603.cpp')
-rw-r--r--src/devices/bus/svi3x8/expander/sv603.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/bus/svi3x8/expander/sv603.cpp b/src/devices/bus/svi3x8/expander/sv603.cpp
index fc8e8c86d96..e8d3dd81b3b 100644
--- a/src/devices/bus/svi3x8/expander/sv603.cpp
+++ b/src/devices/bus/svi3x8/expander/sv603.cpp
@@ -8,7 +8,7 @@
#include "emu.h"
#include "sv603.h"
-#include "softlist.h"
+#include "softlist_dev.h"
#include "speaker.h"
@@ -50,6 +50,7 @@ void sv603_device::device_add_mconfig(machine_config &config)
// cartridge slot
COLECOVISION_CARTRIDGE_SLOT(config, m_cart, colecovision_cartridges, nullptr);
SOFTWARE_LIST(config, "cart_list").set_original("coleco");
+ SOFTWARE_LIST(config, "homebrew_list").set_original("coleco_homebrew");
}
@@ -94,7 +95,7 @@ void sv603_device::device_reset()
//**************************************************************************
template<int N>
-WRITE_LINE_MEMBER( sv603_device::joy_irq_w )
+void sv603_device::joy_irq_w(int state)
{
m_expander->int_w(state);
}