1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-25 18:30:21 +00:00

Add Mega Drive VRAM size.

This commit is contained in:
Thomas Harte 2022-12-27 22:28:43 -05:00
parent 2ab4b351ca
commit 462b7dcbfa

View File

@ -95,6 +95,9 @@ Base::Base(Personality p) :
case TI::TMS::GGVDP:
ram_.resize(16 * 1024);
break;
case TI::TMS::MDVDP:
ram_.resize(64 * 1024);
break;
case TI::TMS::V9938:
ram_.resize(128 * 1024);
break;