From e73d5ef3a7759d71f993b8425573e9fa92345875 Mon Sep 17 00:00:00 2001 From: Alexey 'Cluster' Avdyukhin Date: Sat, 5 Nov 2022 15:34:12 +0400 Subject: Timing.cs --- Timing.cs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Timing.cs diff --git a/Timing.cs b/Timing.cs new file mode 100644 index 0000000..7497ccd --- /dev/null +++ b/Timing.cs @@ -0,0 +1,25 @@ +namespace com.clusterrr.Famicom.Containers +{ + /// + /// Timing type, depends on region + /// + public enum Timing + { + /// + /// NTSC, RP2C02, North America, Japan, South Korea, Taiwan + /// + Ntsc = 0, + /// + /// PAL, RP2C07, Western Europe, Australia + /// + Pal = 1, + /// + /// Used either if a game was released with identical ROM content in both NTSC and PAL countries, such as Nintendo's early games, or if the game detects the console's timing and adjusts itself + /// + Multiple = 2, + /// + /// Dendy, UMC 6527P and clones, Eastern Europe, Russia, Mainland China, India, Africa + /// + Dendy = 3 + }; +} -- cgit v1.2.3