Skip to content

Commit b54aefd

Browse files
authored
bus/a2bus/suprterminal.cpp: Initialize m_bC800IsRAM on start. (#12872)
Fixes unpredictable RAM/ROM mapping in C800 range if not set by writing to C0n2 or C0n4 first.
1 parent 46521af commit b54aefd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/devices/bus/a2bus/suprterminal.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ void a2bus_suprterminal_device::device_start()
125125
m_vram = std::make_unique<u8[]>(0x800); // 4 2114 DRAMs
126126
m_fontram = std::make_unique<u8[]>(0x400); // 2 2114 DRAMs
127127

128+
m_bC800IsRAM = false;
128129
m_bRasterRAM = true;
129130
m_bCharBank1 = false;
130131

0 commit comments

Comments
 (0)