summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2022-01-03 19:52:05 -0500
committer AJR <ajrhacker@users.noreply.github.com>2022-01-03 19:52:10 -0500
commit97de6a1cf2db4eb57884daaff29e7d0c935dd671 (patch)
tree3ceb8f6d33a9785f84112f4c6bfad52714c4cf03 /src/devices/bus
parente78197debeeb322dccd1afa67c06e34db5338582 (diff)
Future-proofing by using correct #include for SOFTWARE_LIST device
Diffstat (limited to 'src/devices/bus')
-rw-r--r--src/devices/bus/archimedes/podule/rom.cpp1
-rw-r--r--src/devices/bus/bml3/bml3mp1802.cpp2
-rw-r--r--src/devices/bus/bml3/bml3mp1805.cpp2
-rw-r--r--src/devices/bus/cgenie/expansion/floppy.cpp2
-rw-r--r--src/devices/bus/cpc/ddi1.cpp2
-rw-r--r--src/devices/bus/msx_cart/disk.cpp2
-rw-r--r--src/devices/bus/psx/gamebooster.cpp2
-rw-r--r--src/devices/bus/saitek_osa/maestro.cpp2
-rw-r--r--src/devices/bus/saitek_osa/maestroa.cpp2
-rw-r--r--src/devices/bus/sega8/mgear.cpp2
-rw-r--r--src/devices/bus/sega8/rom.cpp1
-rw-r--r--src/devices/bus/sg1000_exp/sk1100.cpp2
-rw-r--r--src/devices/bus/spectrum/intf1.cpp1
-rw-r--r--src/devices/bus/spectrum/intf2.cpp1
-rw-r--r--src/devices/bus/spectrum/mgt.cpp1
-rw-r--r--src/devices/bus/spectrum/opus.cpp1
-rw-r--r--src/devices/bus/spectrum/wafa.cpp1
-rw-r--r--src/devices/bus/svi3x8/expander/sv603.cpp2
-rw-r--r--src/devices/bus/svi3x8/slot/sv801.cpp2
-rw-r--r--src/devices/bus/vboy/slot.cpp1
20 files changed, 23 insertions, 9 deletions
diff --git a/src/devices/bus/archimedes/podule/rom.cpp b/src/devices/bus/archimedes/podule/rom.cpp
index 94c55746ee0..be073229e5e 100644
--- a/src/devices/bus/archimedes/podule/rom.cpp
+++ b/src/devices/bus/archimedes/podule/rom.cpp
@@ -14,6 +14,7 @@
#include "bus/generic/carts.h"
#include "bus/generic/ram.h"
#include "bus/generic/rom.h"
+#include "softlist_dev.h"
namespace {
diff --git a/src/devices/bus/bml3/bml3mp1802.cpp b/src/devices/bus/bml3/bml3mp1802.cpp
index 707a0254e81..61900cd020f 100644
--- a/src/devices/bus/bml3/bml3mp1802.cpp
+++ b/src/devices/bus/bml3/bml3mp1802.cpp
@@ -12,6 +12,8 @@
#include "emu.h"
#include "bml3mp1802.h"
+#include "softlist_dev.h"
+
/***************************************************************************
PARAMETERS
diff --git a/src/devices/bus/bml3/bml3mp1805.cpp b/src/devices/bus/bml3/bml3mp1805.cpp
index 9d7e0823388..78b58782d6e 100644
--- a/src/devices/bus/bml3/bml3mp1805.cpp
+++ b/src/devices/bus/bml3/bml3mp1805.cpp
@@ -13,6 +13,8 @@
#include "emu.h"
#include "bml3mp1805.h"
+#include "softlist_dev.h"
+
/***************************************************************************
PARAMETERS
diff --git a/src/devices/bus/cgenie/expansion/floppy.cpp b/src/devices/bus/cgenie/expansion/floppy.cpp
index ee914179d10..a97c3d46e66 100644
--- a/src/devices/bus/cgenie/expansion/floppy.cpp
+++ b/src/devices/bus/cgenie/expansion/floppy.cpp
@@ -14,7 +14,7 @@
#include "floppy.h"
#include "formats/cgenie_dsk.h"
#include "bus/generic/carts.h"
-#include "softlist.h"
+#include "softlist_dev.h"
//**************************************************************************
// CONSTANTS/MACROS
diff --git a/src/devices/bus/cpc/ddi1.cpp b/src/devices/bus/cpc/ddi1.cpp
index c80299c8f88..7deaa49eabd 100644
--- a/src/devices/bus/cpc/ddi1.cpp
+++ b/src/devices/bus/cpc/ddi1.cpp
@@ -6,7 +6,7 @@
#include "emu.h"
#include "ddi1.h"
-#include "softlist.h"
+#include "softlist_dev.h"
void cpc_exp_cards(device_slot_interface &device);
diff --git a/src/devices/bus/msx_cart/disk.cpp b/src/devices/bus/msx_cart/disk.cpp
index 9898f0747f1..b07d9dd6dc0 100644
--- a/src/devices/bus/msx_cart/disk.cpp
+++ b/src/devices/bus/msx_cart/disk.cpp
@@ -103,7 +103,7 @@
#include "emu.h"
#include "disk.h"
#include "formats/msx_dsk.h"
-#include "softlist.h"
+#include "softlist_dev.h"
DEFINE_DEVICE_TYPE(MSX_CART_VY0010, msx_cart_vy0010_device, "msx_cart_vy0010", "MSX Cartridge - VY0010")
DEFINE_DEVICE_TYPE(MSX_CART_FSFD1, msx_cart_fsfd1_device, "msx_cart_fsfd1", "MSX Cartridge - FS-FD1")
diff --git a/src/devices/bus/psx/gamebooster.cpp b/src/devices/bus/psx/gamebooster.cpp
index a84a9893542..87dee3d9530 100644
--- a/src/devices/bus/psx/gamebooster.cpp
+++ b/src/devices/bus/psx/gamebooster.cpp
@@ -11,6 +11,8 @@
#include "emu.h"
#include "gamebooster.h"
+#include "softlist_dev.h"
+
//**************************************************************************
// DEVICE DEFINITIONS
//**************************************************************************
diff --git a/src/devices/bus/saitek_osa/maestro.cpp b/src/devices/bus/saitek_osa/maestro.cpp
index c0b388213c3..2319dc42a25 100644
--- a/src/devices/bus/saitek_osa/maestro.cpp
+++ b/src/devices/bus/saitek_osa/maestro.cpp
@@ -37,7 +37,7 @@ TODO:
#include "bus/generic/carts.h"
#include "cpu/m6502/r65c02.h"
-#include "softlist.h"
+#include "softlist_dev.h"
DEFINE_DEVICE_TYPE(OSA_MAESTRO, saitekosa_maestro_device, "osa_maestro", "Maestro B-D")
diff --git a/src/devices/bus/saitek_osa/maestroa.cpp b/src/devices/bus/saitek_osa/maestroa.cpp
index aa96c7b3798..da08b9d9c0a 100644
--- a/src/devices/bus/saitek_osa/maestroa.cpp
+++ b/src/devices/bus/saitek_osa/maestroa.cpp
@@ -29,7 +29,7 @@ TODO:
#include "bus/generic/carts.h"
#include "cpu/m6502/r65c02.h"
-#include "softlist.h"
+#include "softlist_dev.h"
DEFINE_DEVICE_TYPE(OSA_MAESTROA, saitekosa_maestroa_device, "osa_maestroa", "Maestro A")
diff --git a/src/devices/bus/sega8/mgear.cpp b/src/devices/bus/sega8/mgear.cpp
index 46fb6a4ad52..1c128c830ec 100644
--- a/src/devices/bus/sega8/mgear.cpp
+++ b/src/devices/bus/sega8/mgear.cpp
@@ -15,7 +15,7 @@
#include "emu.h"
#include "mgear.h"
-#include "softlist.h"
+#include "softlist_dev.h"
//-------------------------------------------------
// constructors
diff --git a/src/devices/bus/sega8/rom.cpp b/src/devices/bus/sega8/rom.cpp
index 1cc25a476cf..7d5d35710e9 100644
--- a/src/devices/bus/sega8/rom.cpp
+++ b/src/devices/bus/sega8/rom.cpp
@@ -11,6 +11,7 @@
#include "emu.h"
#include "rom.h"
+#include "softlist_dev.h"
//-------------------------------------------------
diff --git a/src/devices/bus/sg1000_exp/sk1100.cpp b/src/devices/bus/sg1000_exp/sk1100.cpp
index e9165c971f5..95884acfb30 100644
--- a/src/devices/bus/sg1000_exp/sk1100.cpp
+++ b/src/devices/bus/sg1000_exp/sk1100.cpp
@@ -18,7 +18,7 @@ TODO:
#include "emu.h"
#include "sk1100.h"
-#include "softlist.h"
+#include "softlist_dev.h"
diff --git a/src/devices/bus/spectrum/intf1.cpp b/src/devices/bus/spectrum/intf1.cpp
index 0d3bba65618..aaef5a53fbf 100644
--- a/src/devices/bus/spectrum/intf1.cpp
+++ b/src/devices/bus/spectrum/intf1.cpp
@@ -12,6 +12,7 @@
#include "emu.h"
#include "intf1.h"
+#include "softlist_dev.h"
//**************************************************************************
diff --git a/src/devices/bus/spectrum/intf2.cpp b/src/devices/bus/spectrum/intf2.cpp
index afce2005a99..8fbf1139f3f 100644
--- a/src/devices/bus/spectrum/intf2.cpp
+++ b/src/devices/bus/spectrum/intf2.cpp
@@ -12,6 +12,7 @@
#include "emu.h"
#include "intf2.h"
+#include "softlist_dev.h"
//**************************************************************************
diff --git a/src/devices/bus/spectrum/mgt.cpp b/src/devices/bus/spectrum/mgt.cpp
index f0ce315f2d6..f1396cdeb7c 100644
--- a/src/devices/bus/spectrum/mgt.cpp
+++ b/src/devices/bus/spectrum/mgt.cpp
@@ -154,6 +154,7 @@
#include "emu.h"
#include "mgt.h"
+#include "softlist_dev.h"
//**************************************************************************
diff --git a/src/devices/bus/spectrum/opus.cpp b/src/devices/bus/spectrum/opus.cpp
index fccac06175a..225783ebaf8 100644
--- a/src/devices/bus/spectrum/opus.cpp
+++ b/src/devices/bus/spectrum/opus.cpp
@@ -9,6 +9,7 @@
#include "emu.h"
#include "opus.h"
+#include "softlist_dev.h"
//**************************************************************************
diff --git a/src/devices/bus/spectrum/wafa.cpp b/src/devices/bus/spectrum/wafa.cpp
index 1dfec7e3e57..2e25b2500ce 100644
--- a/src/devices/bus/spectrum/wafa.cpp
+++ b/src/devices/bus/spectrum/wafa.cpp
@@ -22,6 +22,7 @@
#include "emu.h"
#include "wafa.h"
+#include "softlist_dev.h"
//**************************************************************************
// DEVICE DEFINITIONS
diff --git a/src/devices/bus/svi3x8/expander/sv603.cpp b/src/devices/bus/svi3x8/expander/sv603.cpp
index fc8e8c86d96..fb0fd3428f9 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"
diff --git a/src/devices/bus/svi3x8/slot/sv801.cpp b/src/devices/bus/svi3x8/slot/sv801.cpp
index b4f022afba2..5695cfd5957 100644
--- a/src/devices/bus/svi3x8/slot/sv801.cpp
+++ b/src/devices/bus/svi3x8/slot/sv801.cpp
@@ -8,7 +8,7 @@
#include "emu.h"
#include "sv801.h"
-#include "softlist.h"
+#include "softlist_dev.h"
#include "formats/svi_dsk.h"
diff --git a/src/devices/bus/vboy/slot.cpp b/src/devices/bus/vboy/slot.cpp
index 70dd9e05063..b80480fe953 100644
--- a/src/devices/bus/vboy/slot.cpp
+++ b/src/devices/bus/vboy/slot.cpp
@@ -12,6 +12,7 @@
#include "emuopts.h"
#include "romload.h"
+#include "softlist.h"
#include <cstring>