diff options
author | 2016-08-27 07:06:25 +1000 | |
---|---|---|
committer | 2016-08-27 07:06:25 +1000 | |
commit | cdb531e83defeb87fe131c37ca4ff3d28fc3f3df (patch) | |
tree | 78879b9181ba57cd027f9dc50f3c003ec68658b4 /src/devices/machine/tc009xlvc.cpp | |
parent | 9aa39dca0a16bcf8295334fb5f47fdc93315bcf7 (diff) |
Another round of these
Diffstat (limited to 'src/devices/machine/tc009xlvc.cpp')
-rw-r--r-- | src/devices/machine/tc009xlvc.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/tc009xlvc.cpp b/src/devices/machine/tc009xlvc.cpp index 6c27bb30012..affda6fa455 100644 --- a/src/devices/machine/tc009xlvc.cpp +++ b/src/devices/machine/tc009xlvc.cpp @@ -165,10 +165,10 @@ static ADDRESS_MAP_START( tc0091lvc_map8, AS_0, 8, tc0091lvc_device ) ADDRESS_MAP_END tc0091lvc_device::tc0091lvc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, TC0091LVC, "Taito TC0091LVC", tag, owner, clock, "tc0091lvc", __FILE__), - device_memory_interface(mconfig, *this), - m_space_config("tc0091lvc", ENDIANNESS_LITTLE, 8,20, 0, nullptr, *ADDRESS_MAP_NAME(tc0091lvc_map8)), - m_gfxdecode(*this) + : device_t(mconfig, TC0091LVC, "Taito TC0091LVC", tag, owner, clock, "tc0091lvc", __FILE__) + , device_memory_interface(mconfig, *this) + , m_space_config("tc0091lvc", ENDIANNESS_LITTLE, 8,20, 0, nullptr, *ADDRESS_MAP_NAME(tc0091lvc_map8)) + , m_gfxdecode(*this, finder_base::DUMMY_TAG) { } |