sms, add sg-1000 support

This commit is contained in:
kub 2022-02-28 21:45:50 +00:00
parent 216c9f17fa
commit df6c895c5c
9 changed files with 72 additions and 41 deletions

View file

@ -332,9 +332,11 @@ static void system_announce(void)
if (PicoIn.AHW & PAHW_SMS) {
sys_name = "Master System";
if (Pico.m.hardware & 0x1)
if (Pico.m.hardware & PMS_HW_GG)
sys_name = "Game Gear";
else if (Pico.m.hardware & 0x4)
else if (Pico.m.hardware & PMS_HW_SG)
sys_name = "SG-1000";
else if (Pico.m.hardware & PMS_HW_JAP)
sys_name = "Mark III";
#ifdef NO_SMS
extra = " [no support]";