diff options
| author | 2017-07-17 13:49:45 +0200 | |
|---|---|---|
| committer | 2017-07-17 13:49:45 +0200 | |
| commit | 2d42e889f443426721eb46c3afedbe1201f8d0f4 (patch) | |
| tree | e339b8a95617c85d2e8d1a76013f8f2886d3dd9f /src/devices/machine/68340.cpp | |
| parent | 272dbaf101a51f0d18572c84838ac814af99cadf (diff) | |
68340: Added config macros and callbacks for 8 bit ports A and B
Diffstat (limited to 'src/devices/machine/68340.cpp')
| -rw-r--r-- | src/devices/machine/68340.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/devices/machine/68340.cpp b/src/devices/machine/68340.cpp index 3dc8f2e5c83..0de1bf4dcf8 100644 --- a/src/devices/machine/68340.cpp +++ b/src/devices/machine/68340.cpp @@ -107,6 +107,10 @@ ADDRESS_MAP_END m68340_cpu_device::m68340_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : fscpu32_device(mconfig, tag, owner, clock, M68340, 32,32, ADDRESS_MAP_NAME(m68340_internal_map)) + ,m_pa_out_cb(*this) + ,m_pa_in_cb(*this) + ,m_pb_out_cb(*this) + ,m_pb_in_cb(*this) { m68340SIM = nullptr; m68340DMA = nullptr; |
