summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/oricext/oricext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/oricext/oricext.cpp')
-rw-r--r--src/devices/bus/oricext/oricext.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/devices/bus/oricext/oricext.cpp b/src/devices/bus/oricext/oricext.cpp
index 0482da61b7f..3034f0f6c6f 100644
--- a/src/devices/bus/oricext/oricext.cpp
+++ b/src/devices/bus/oricext/oricext.cpp
@@ -9,7 +9,7 @@ const device_type ORICEXT_CONNECTOR = &device_creator<oricext_connector>;
oricext_connector::oricext_connector(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
device_t(mconfig, ORICEXT_CONNECTOR, "ORIC extension connector", tag, owner, clock, "oricext_connector", __FILE__),
device_slot_interface(mconfig, *this),
- irq_handler(*this),
+ irq_handler(*this),
cputag(NULL)
{
}
@@ -43,16 +43,16 @@ void oricext_connector::device_config_complete()
oricext_device::oricext_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) :
device_t(mconfig, type, name, tag, owner, clock, shortname, source),
device_slot_card_interface(mconfig, *this),
- cputag(nullptr),
- cpu(nullptr),
- connector(nullptr),
- bank_c000_r(nullptr),
- bank_e000_r(nullptr),
- bank_f800_r(nullptr),
- bank_c000_w(nullptr),
- bank_e000_w(nullptr),
- bank_f800_w(nullptr),
- rom(nullptr),
+ cputag(nullptr),
+ cpu(nullptr),
+ connector(nullptr),
+ bank_c000_r(nullptr),
+ bank_e000_r(nullptr),
+ bank_f800_r(nullptr),
+ bank_c000_w(nullptr),
+ bank_e000_w(nullptr),
+ bank_f800_w(nullptr),
+ rom(nullptr),
ram(nullptr)
{
}