Skip to content

Commit d7ac920

Browse files
M86HC05: Fix ROM size
The mc68hc05c8a datasheet notices that these two are short by 4 bytes. This corrects the error.
1 parent 09768d6 commit d7ac920

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/devices/cpu/m6805/m68hc05.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -948,8 +948,7 @@ void m68hc05c4_device::c4_map(address_map &map)
948948
map(0x0100, 0x10ff).rom(); // user ROM
949949
// 0x1100-0x1eff unused
950950
map(0x1f00, 0x1fef).rom(); // self-check
951-
// 0x1ff0-0x1ff3 unused
952-
map(0x1ff4, 0x1fff).rom(); // user vectors
951+
map(0x1ff0, 0x1fff).rom(); // user vectors
953952
}
954953

955954

@@ -1016,8 +1015,7 @@ void m68hc05c8_device::c8_map(address_map &map)
10161015
map(0x0050, 0x00ff).ram(); // RAM/stack
10171016
map(0x0100, 0x1eff).rom(); // user ROM
10181017
map(0x1f00, 0x1fef).rom(); // self-check
1019-
// 0x1ff0-0x1ff3 unused
1020-
map(0x1ff4, 0x1fff).rom(); // user vectors
1018+
map(0x1ff0, 0x1fff).rom(); // user vectors
10211019
}
10221020

10231021

0 commit comments

Comments
 (0)