summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/idpartner/bus.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/idpartner/bus.cpp')
-rw-r--r--src/devices/bus/idpartner/bus.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/devices/bus/idpartner/bus.cpp b/src/devices/bus/idpartner/bus.cpp
index 6b82488062a..2c426f39991 100644
--- a/src/devices/bus/idpartner/bus.cpp
+++ b/src/devices/bus/idpartner/bus.cpp
@@ -19,8 +19,8 @@ namespace bus::idpartner {
***********************************************************************/
device_exp_card_interface::device_exp_card_interface(const machine_config &mconfig, device_t &device)
- : device_interface(device, "idpartner_card")
- , m_bus(nullptr)
+ : device_interface(device, "idpartner_card")
+ , m_bus(nullptr)
{
}
@@ -29,9 +29,9 @@ device_exp_card_interface::device_exp_card_interface(const machine_config &mconf
***********************************************************************/
bus_connector_device::bus_connector_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, IDPARTNER_BUS_CONNECTOR, tag, owner, clock)
- , device_single_card_slot_interface<device_exp_card_interface>(mconfig, *this)
- , m_bus(*this, finder_base::DUMMY_TAG)
+ : device_t(mconfig, IDPARTNER_BUS_CONNECTOR, tag, owner, clock)
+ , device_single_card_slot_interface<device_exp_card_interface>(mconfig, *this)
+ , m_bus(*this, finder_base::DUMMY_TAG)
{
}
@@ -41,9 +41,9 @@ bus_connector_device::bus_connector_device(const machine_config &mconfig, const
void bus_connector_device::device_resolve_objects()
{
- device_exp_card_interface *const exp_card = get_card_device();
- if (exp_card)
- exp_card->set_bus(m_bus);
+ device_exp_card_interface *const exp_card = get_card_device();
+ if (exp_card)
+ exp_card->set_bus(m_bus);
}
void bus_connector_device::device_start()
@@ -55,11 +55,11 @@ void bus_connector_device::device_start()
***********************************************************************/
bus_device::bus_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, IDPARTNER_BUS, tag, owner, clock)
- , m_io(*this, finder_base::DUMMY_TAG, -1)
- , m_int_handler(*this)
- , m_nmi_handler(*this)
- , m_drq_handler(*this)
+ : device_t(mconfig, IDPARTNER_BUS, tag, owner, clock)
+ , m_io(*this, finder_base::DUMMY_TAG, -1)
+ , m_int_handler(*this)
+ , m_nmi_handler(*this)
+ , m_drq_handler(*this)
{
}
@@ -82,6 +82,6 @@ void bus_device::device_reset()
void idpartner_exp_devices(device_slot_interface &device)
{
- device.option_add("gdp", IDPARTNER_GDP);
- device.option_add("sasi", IDPARTNER_SASI);
+ device.option_add("gdp", IDPARTNER_GDP);
+ device.option_add("sasi", IDPARTNER_SASI);
}