namespace BizHawk.Emulation.Common
{
///
/// DisplayType, used in IEmulator
///
public enum DisplayType { NTSC, PAL, DENDY }
///
/// The type/increment of stepping in the Step method of IDebuggable
///
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
}
}