From 462b7dcbfacdb8b95c025b35bef16ca7aabd62e6 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 27 Dec 2022 22:28:43 -0500 Subject: [PATCH] Add Mega Drive VRAM size. --- Components/9918/9918.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Components/9918/9918.cpp b/Components/9918/9918.cpp index 7527b9c64..baa42b113 100644 --- a/Components/9918/9918.cpp +++ b/Components/9918/9918.cpp @@ -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;