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:
Roman Donchenko 2024-10-12 18:12:47 +03:00 committed by GitHub
parent 46521af559
commit b54aefdaee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;