diff options
author | 2021-12-26 13:33:56 +1100 | |
---|---|---|
committer | 2021-12-26 13:33:56 +1100 | |
commit | c25e62f25e36609b2a7d60d86f719a2e31f88f66 (patch) | |
tree | 5325ee754b5d39bcdda484fd34fc190d261b7932 /src/devices/bus | |
parent | b3bcdac16437e77efc428e1d45f0758496a9e567 (diff) |
srcclean, remove a vestigial thing, and a little cleanup
Diffstat (limited to 'src/devices/bus')
-rw-r--r-- | src/devices/bus/isa/xsu_cards.cpp | 4 | ||||
-rw-r--r-- | src/devices/bus/vme/vme_cp31.cpp | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/bus/isa/xsu_cards.cpp b/src/devices/bus/isa/xsu_cards.cpp index 8b246625e0e..3be4e40a67c 100644 --- a/src/devices/bus/isa/xsu_cards.cpp +++ b/src/devices/bus/isa/xsu_cards.cpp @@ -68,8 +68,8 @@ void ec184x_isa8_cards(device_slot_interface &device) device.option_add("ec1840.0004", ISA8_LPT); device.option_add("ec1841.0002", ISA8_EC1841_0002); // CGA with downloadable font device.option_add("ec1841.0003", ISA8_EC1841_0003); // FDC + mouse port -// device.option_add("ec1840.0004", ISA8_EC1840_0004); // BSC-like serial ports + parallel port -// device.option_add("ec1841.0010", ISA8_EC1841_0010); // 8089-based HDC +// device.option_add("ec1840.0004", ISA8_EC1840_0004); // BSC-like serial ports + parallel port +// device.option_add("ec1841.0010", ISA8_EC1841_0010); // 8089-based HDC device.option_add("mda", ISA8_MDA); device.option_add("hdc", ISA8_HDC_EC1841); device.option_add("pccom", ISA8_COM); diff --git a/src/devices/bus/vme/vme_cp31.cpp b/src/devices/bus/vme/vme_cp31.cpp index 7c4659d2bdd..2f960bbcd3c 100644 --- a/src/devices/bus/vme/vme_cp31.cpp +++ b/src/devices/bus/vme/vme_cp31.cpp @@ -65,8 +65,8 @@ void vme_cp31_card_device::cp31_mem(address_map &map) { map.unmap_value_high(); map(0x00000000, 0x001fffff).ram().share("dram"); // local bus DRAM, 4 MB -// map(0x08010000, 0x08011fff).ram(); // unknown -- accessed by cp31dssp -// map(0xfca03500, 0xfca0350f).unmaprw(); // ISCSI-1 board on VME bus +// map(0x08010000, 0x08011fff).ram(); // unknown -- accessed by cp31dssp +// map(0xfca03500, 0xfca0350f).unmaprw(); // ISCSI-1 board on VME bus map(0xff000000, 0xff03ffff).rom().region("user1", 0); map(0xff040000, 0xff07ffff).ram(); // onboard SRAM map(0xff800000, 0xff80001f).rw(m_mpcc, FUNC(mpcc68561_device::read), FUNC(mpcc68561_device::write)); @@ -74,8 +74,8 @@ void vme_cp31_card_device::cp31_mem(address_map &map) map(0xff800800, 0xff80080f).rw(m_bim, FUNC(bim68153_device::read), FUNC(bim68153_device::write)).umask32(0xff00ff00); map(0xff800a00, 0xff800a1f).rw(m_rtc, FUNC(rtc62421_device::read), FUNC(rtc62421_device::write)); map(0xff800c00, 0xff800dff).rw(m_pit1, FUNC(pit68230_device::read), FUNC(pit68230_device::write)); -// map(0xff800400, 0xff800xxx) // TIC? -- shows up in cp31dssp log -// map(0xff800e00, 0xff800xxx) // PIT3? +// map(0xff800400, 0xff800xxx) // TIC? -- shows up in cp31dssp log +// map(0xff800e00, 0xff800xxx) // PIT3? } static DEVICE_INPUT_DEFAULTS_START( terminal ) @@ -180,7 +180,7 @@ void vme_cp31_card_device::device_add_mconfig(machine_config &config) m_pit1->pa_in_callback().set_ioport("SA1"); m_pit1->pb_out_callback().set(*this, FUNC(vme_cp31_card_device::pit1_pb_w)); m_pit1->pc_in_callback().set(*this, FUNC(vme_cp31_card_device::pit1_pc_r)); -// m_pit1->pc_out_callback().set(*this, FUNC(vme_cp31_card_device::pit1_pc_w)); +// m_pit1->pc_out_callback().set(*this, FUNC(vme_cp31_card_device::pit1_pc_w)); m_pit1->timer_irq_callback().set(m_bim, FUNC(bim68153_device::int2_w)); m_pit1->port_irq_callback().set(m_bim, FUNC(bim68153_device::int3_w)); |