diff blastem.c @ 2428:65c2e4d990cc

WIP Pico emulation
author Michael Pavone <pavone@retrodev.com>
date Sat, 03 Feb 2024 18:32:41 -0800
parents 6f8400ce7a0f
children fb8d6ebf9d5f
line wrap: on
line diff
--- a/blastem.c	Thu Jan 25 22:18:46 2024 -0800
+++ b/blastem.c	Sat Feb 03 18:32:41 2024 -0800
@@ -609,6 +609,8 @@
 					stype = force_stype = SYSTEM_SMS;
 				} else if (!strcmp("gen", argv[i])) {
 					stype = force_stype = SYSTEM_GENESIS;
+				} else if (!strcmp("pico", argv[i])) {
+					stype = force_stype = SYSTEM_PICO;
 				} else if (!strcmp("jag", argv[i])) {
 					stype = force_stype = SYSTEM_JAGUAR;
 				} else if (!strcmp("media", argv[i])) {
@@ -648,8 +650,9 @@
 					"	-h          Print this help text\n"
 					"	-r (J|U|E)  Force region to Japan, US or Europe respectively\n"
 					"	-m MACHINE  Force emulated machine type to MACHINE. Valid values are:\n"
-					"                   sms - Sega Master System/Mark III\n"
-					"                   gen - Sega Genesis/Megadrive\n"
+					"                   sms   - Sega Master System/Mark III\n"
+					"                   gen   - Sega Genesis/Megadrive\n"
+					"                   pico  - Sega Pico\n"
 					"                   media - Media Player\n"
 					"	-f          Toggles fullscreen mode\n"
 					"	-g          Disable OpenGL rendering\n"