BizHawk/BizHawk.Client.Common/Api/CoreSystem.cs

44 lines
559 B
C#
Raw Normal View History

namespace BizHawk.Client.ApiHawk
{
/// <summary>
/// Enumeration of each system emulated by BizHawk
/// </summary>
public enum CoreSystem
{
Null = 0,
TI83,
AppleII,
Commodore64,
Atari2600,
Atari7800,
Lynx,
ColecoVision,
Intellivision,
GameBoy,
DualGameBoy,
GameBoyAdvance,
Nintendo64,
NES,
SNES,
PCEngine,
Genesis,
Saturn,
MasterSystem,
PSP,
Playstation,
WonderSwan,
Libretro,
2017-06-01 00:09:31 +00:00
VirtualBoy,
Vectrex,
2017-11-23 17:26:15 +00:00
NeoGeoPocket,
2019-11-04 01:55:38 +00:00
ZXSpectrum,
AmstradCPC,
GGL,
2019-10-04 17:52:29 +00:00
GB3x,
GB4x,
ChannelF,
Odyssey2,
MAME
}
}