summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/interpro
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-08-15 22:07:25 +0200
committer mooglyguy <therealmogminer@gmail.com>2018-08-15 22:07:38 +0200
commit70ab417e2364645d0edad0ed3c350878b3dea702 (patch)
treef0ab54040007afaa7be8eec5ad57355c26838812 /src/devices/bus/interpro
parent99ff0a81e9dca70d84ff5e185e5ff18ea6cf7b71 (diff)
-bankdev: Remove MCFG, nw
Diffstat (limited to 'src/devices/bus/interpro')
-rw-r--r--src/devices/bus/interpro/keyboard/lle.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/devices/bus/interpro/keyboard/lle.cpp b/src/devices/bus/interpro/keyboard/lle.cpp
index d99797f2cec..bdeb185ebe8 100644
--- a/src/devices/bus/interpro/keyboard/lle.cpp
+++ b/src/devices/bus/interpro/keyboard/lle.cpp
@@ -442,11 +442,7 @@ MACHINE_CONFIG_START(lle_device_base::device_add_mconfig)
MCFG_MCS48_PORT_BUS_IN_CB(READ8(*this, lle_device_base, bus_r))
MCFG_MCS48_PORT_BUS_OUT_CB(WRITE8(*this, lle_device_base, bus_w))
- MCFG_DEVICE_ADD(m_ext, ADDRESS_MAP_BANK, 0)
- MCFG_DEVICE_PROGRAM_MAP(ext_map)
- MCFG_ADDRESS_MAP_BANK_DATA_WIDTH(8)
- MCFG_ADDRESS_MAP_BANK_ADDR_WIDTH(12)
- MCFG_ADDRESS_MAP_BANK_STRIDE(0x100)
+ ADDRESS_MAP_BANK(config, m_ext).set_map(&lle_device_base::ext_map).set_options(ENDIANNESS_NATIVE, 8, 12, 0x100);
SPEAKER(config, "keyboard").front_center();
MCFG_DEVICE_ADD("speaker", SPEAKER_SOUND, 0)