namespace BizHawk.Emulation.Common { /// /// DisplayType, used in /// public enum DisplayType { NTSC, PAL, Dendy } /// /// The type/increment of stepping in the Step method of /// public enum StepType { Into, Out, Over } /// /// In the game database, the status of the rom found in the database /// public enum RomStatus { GoodDump, BadDump, Homebrew, TranslatedRom, Hack, Unknown, Bios, Overdump, NotInDatabase } }