mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
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.
This commit is contained in:
parent
46521af559
commit
b54aefdaee
@ -125,6 +125,7 @@ void a2bus_suprterminal_device::device_start()
|
||||
m_vram = std::make_unique<u8[]>(0x800); // 4 2114 DRAMs
|
||||
m_fontram = std::make_unique<u8[]>(0x400); // 2 2114 DRAMs
|
||||
|
||||
m_bC800IsRAM = false;
|
||||
m_bRasterRAM = true;
|
||||
m_bCharBank1 = false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user