2014-12-01 14:27:23 +00:00
|
|
|
|
namespace BizHawk.Emulation.Common
|
|
|
|
|
{
|
2014-12-16 17:06:29 +00:00
|
|
|
|
/// <summary>
|
2017-04-27 16:56:33 +00:00
|
|
|
|
/// DisplayType, used in <seealso cref="IEmulator"/>
|
2014-12-16 17:06:29 +00:00
|
|
|
|
/// </summary>
|
2017-04-27 16:45:44 +00:00
|
|
|
|
public enum DisplayType
|
|
|
|
|
{
|
|
|
|
|
NTSC,
|
|
|
|
|
PAL,
|
|
|
|
|
Dendy
|
|
|
|
|
}
|
2014-12-16 17:06:29 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-04-27 16:45:44 +00:00
|
|
|
|
/// The type/increment of stepping in the Step method of <seealso cref="IDebuggable"/>
|
2014-12-16 17:06:29 +00:00
|
|
|
|
/// </summary>
|
2017-04-27 16:45:44 +00:00
|
|
|
|
public enum StepType
|
|
|
|
|
{
|
|
|
|
|
Into,
|
|
|
|
|
Out,
|
|
|
|
|
Over
|
|
|
|
|
}
|
2014-12-16 17:06:29 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// In the game database, the status of the rom found in the database
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum RomStatus
|
|
|
|
|
{
|
|
|
|
|
GoodDump,
|
|
|
|
|
BadDump,
|
|
|
|
|
Homebrew,
|
|
|
|
|
TranslatedRom,
|
|
|
|
|
Hack,
|
|
|
|
|
Unknown,
|
2017-04-27 16:45:44 +00:00
|
|
|
|
Bios,
|
2014-12-16 17:06:29 +00:00
|
|
|
|
Overdump,
|
|
|
|
|
NotInDatabase
|
|
|
|
|
}
|
2014-12-01 14:27:23 +00:00
|
|
|
|
}
|