summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Nigel Barnes <Pernod70@users.noreply.github.com>2021-05-08 22:26:35 +0100
committer Nigel Barnes <Pernod70@users.noreply.github.com>2021-05-09 17:22:12 +0100
commitf7bce1fc07377e3ecb007047cac2f5558ec7d887 (patch)
treecac110015043010b19f81fbd5b776e0d6e718af8
parentebeb21fbc5d7aa00e3f6659ca7ed3d93dcde497e (diff)
bbc_tube_80286: Correct mapped RAM size.
-rw-r--r--src/devices/bus/bbc/tube/tube_80286.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/bbc/tube/tube_80286.cpp b/src/devices/bus/bbc/tube/tube_80286.cpp
index 9e7035abbc7..2164ffe526a 100644
--- a/src/devices/bus/bbc/tube/tube_80286.cpp
+++ b/src/devices/bus/bbc/tube/tube_80286.cpp
@@ -27,7 +27,7 @@ DEFINE_DEVICE_TYPE(BBC_TUBE_80286, bbc_tube_80286_device, "bbc_tube_80286", "Aco
void bbc_tube_80286_device::tube_80286_mem(address_map &map)
{
map.global_mask(0xfffff);
- map(0x00000, 0xbffff).ram().share("ram");
+ map(0x00000, 0xfffff).ram().share("ram");
map(0xc0000, 0xc3fff).rom().region("bootstrap", 0).mirror(0x3c000);
}