summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-05-17 01:19:02 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-05-17 01:19:08 -0400
commitf1bd8930becce9dee3dfa2d14d19a688df9dbacc (patch)
tree0425c11d3a0c270d8019b604f18c5452374fb7e8
parentd1e1e830d7904990bee1e77a7cb57a053b13932a (diff)
atari810, atari1050: Fix configuration bugs (nw)
-rw-r--r--src/devices/bus/a800/atari1050.cpp2
-rw-r--r--src/devices/bus/a800/atari810.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/a800/atari1050.cpp b/src/devices/bus/a800/atari1050.cpp
index c82113e812c..4cded47684e 100644
--- a/src/devices/bus/a800/atari1050.cpp
+++ b/src/devices/bus/a800/atari1050.cpp
@@ -59,7 +59,7 @@ WRITE_LINE_MEMBER(atari1050_device::ready_w)
static INPUT_PORTS_START(atari1050)
- PORT_NAME("SELECT") // values not verified
+ PORT_START("SELECT") // values not verified
PORT_DIPNAME(0x03, 0x00, "Drive Code") PORT_DIPLOCATION("S2:1,2")
PORT_DIPSETTING(0x00, "No. 1")
PORT_DIPSETTING(0x01, "No. 2")
diff --git a/src/devices/bus/a800/atari810.cpp b/src/devices/bus/a800/atari810.cpp
index 12955fb1609..6967d641753 100644
--- a/src/devices/bus/a800/atari810.cpp
+++ b/src/devices/bus/a800/atari810.cpp
@@ -38,7 +38,7 @@ void atari810_device::mem_map(address_map &map)
map(0x0080, 0x00ff).mirror(0x1400).ram(); // MCM6810
map(0x0100, 0x017f).mirror(0x1480).m(m_pia, FUNC(mos6532_new_device::ram_map));
map(0x0300, 0x031f).mirror(0x14e0).m(m_pia, FUNC(mos6532_new_device::io_map));
- map(0x0800, 0x0fff).mirror(0x1800).rom().region("rom", 0);
+ map(0x0800, 0x0fff).mirror(0x1000).rom().region("rom", 0);
}
@@ -59,7 +59,7 @@ WRITE_LINE_MEMBER(atari810_device::ready_w)
static INPUT_PORTS_START(atari810)
- PORT_NAME("SELECT") // values not verified
+ PORT_START("SELECT") // values not verified
PORT_DIPNAME(0x05, 0x00, "Drive Code") PORT_DIPLOCATION("S101:1,2")
PORT_DIPSETTING(0x00, "No. 1")
PORT_DIPSETTING(0x01, "No. 2")