summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/mame/drivers/lbpc.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/lbpc.cpp b/src/mame/drivers/lbpc.cpp
index 919fffe7108..3daf9b9fd95 100644
--- a/src/mame/drivers/lbpc.cpp
+++ b/src/mame/drivers/lbpc.cpp
@@ -124,6 +124,7 @@ void lbpc_state::mem_map(address_map &map)
void lbpc_state::io_map(address_map &map)
{
+ map(0x0061, 0x0061).rw(FUNC(lbpc_state::port61_r), FUNC(lbpc_state::port61_w));
map(0x0330, 0x0337).rw("scsi:7:ncr", FUNC(ncr53c80_device::read), FUNC(ncr53c80_device::write));
map(0x0370, 0x0377).m("fdc", FUNC(wd37c65c_device::map));
map(0x03f8, 0x03ff).rw("com", FUNC(ins8250_device::ins8250_r), FUNC(ins8250_device::ins8250_w));
@@ -204,4 +205,4 @@ ROM_START(lbpc)
ROM_END
-COMP(1989, lbpc, 0, 0, lbpc, lbpc, lbpc_state, empty_init, "Ampro Computers", "Little Board/PC", MACHINE_IS_SKELETON)
+COMP(1989, lbpc, 0, 0, lbpc, lbpc, lbpc_state, empty_init, "Ampro Computers", "Little Board/PC", MACHINE_NOT_WORKING)
c?s=128&d=retro' /> Aaron Giles2011-03-271-3/+3 * Added device_t::memory() to fetch a reference to the memory interface, Aaron Giles2011-03-271-2/+2 * mark NO_DUMP roms that have a placeholder as BAD_DUMP Michaƫl Banaan Ananas2011-03-261-1/+1 * Modified video update system. [Miodrag Milanovic] Miodrag Milanovic2011-02-241-2/+2 * Converted atarirle to a device. [Atari Ace] Aaron Giles2011-02-121-4/+30 * From: Atari Ace [atari_ace@frontier.com] Aaron Giles2011-01-271-40/+37 * MDRV_* -> MCFG_* Aaron Giles2010-12-311-17/+17 * Replaced largely redundant NVRAM handlers with NVRAM devices Aaron Giles2010-09-101-2/+2 * Changed the MACHINE_DRIVER_* macros, as follows: Aaron Giles2010-09-011-4/+3 * Remove memory_read/write_byte/word/dword/qword* variants. Again, this is mostly Aaron Giles2010-08-191-4/+4 * Replace "const address_space" with "address_space" throughout the system. Aaron Giles2010-08-191-5/+5 * (Wow, I had no idea quite so many drivers were using driver_data!) Aaron Giles2010-08-041-20/+20 * Time to kill off some deadwood. Aaron Giles2010-07-071-1/+1 * WARNING: There are likely to be regressions in both functionality and Aaron Giles2010-06-081-1/+1 * Bulk driver.h -> emu.h switch.