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 }; }