comparison 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
comparison
equal deleted inserted replaced
2427:8b948cf23557 2428:65c2e4d990cc
607 } 607 }
608 if (!strcmp("sms", argv[i])) { 608 if (!strcmp("sms", argv[i])) {
609 stype = force_stype = SYSTEM_SMS; 609 stype = force_stype = SYSTEM_SMS;
610 } else if (!strcmp("gen", argv[i])) { 610 } else if (!strcmp("gen", argv[i])) {
611 stype = force_stype = SYSTEM_GENESIS; 611 stype = force_stype = SYSTEM_GENESIS;
612 } else if (!strcmp("pico", argv[i])) {
613 stype = force_stype = SYSTEM_PICO;
612 } else if (!strcmp("jag", argv[i])) { 614 } else if (!strcmp("jag", argv[i])) {
613 stype = force_stype = SYSTEM_JAGUAR; 615 stype = force_stype = SYSTEM_JAGUAR;
614 } else if (!strcmp("media", argv[i])) { 616 } else if (!strcmp("media", argv[i])) {
615 stype = force_stype = SYSTEM_MEDIA_PLAYER; 617 stype = force_stype = SYSTEM_MEDIA_PLAYER;
616 } else { 618 } else {
646 "Usage: blastem [OPTIONS] ROMFILE [WIDTH] [HEIGHT]\n" 648 "Usage: blastem [OPTIONS] ROMFILE [WIDTH] [HEIGHT]\n"
647 "Options:\n" 649 "Options:\n"
648 " -h Print this help text\n" 650 " -h Print this help text\n"
649 " -r (J|U|E) Force region to Japan, US or Europe respectively\n" 651 " -r (J|U|E) Force region to Japan, US or Europe respectively\n"
650 " -m MACHINE Force emulated machine type to MACHINE. Valid values are:\n" 652 " -m MACHINE Force emulated machine type to MACHINE. Valid values are:\n"
651 " sms - Sega Master System/Mark III\n" 653 " sms - Sega Master System/Mark III\n"
652 " gen - Sega Genesis/Megadrive\n" 654 " gen - Sega Genesis/Megadrive\n"
655 " pico - Sega Pico\n"
653 " media - Media Player\n" 656 " media - Media Player\n"
654 " -f Toggles fullscreen mode\n" 657 " -f Toggles fullscreen mode\n"
655 " -g Disable OpenGL rendering\n" 658 " -g Disable OpenGL rendering\n"
656 " -s FILE Load a GST format savestate from FILE\n" 659 " -s FILE Load a GST format savestate from FILE\n"
657 " -o FILE Load FILE as a lock-on cartridge\n" 660 " -o FILE Load FILE as a lock-on cartridge\n"