parent
db97427ae1
commit
d570cc2fcc
|
@ -744,10 +744,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
|
|||
{
|
||||
public bool UseRGBDSSyntax;
|
||||
|
||||
public override IEnumerable<string> AvailableCpus
|
||||
{
|
||||
get { yield return "LR35902"; }
|
||||
}
|
||||
public override IEnumerable<string> AvailableCpus { get; } = new[] { "LR35902" };
|
||||
|
||||
public override string PCRegisterName => "PC";
|
||||
|
||||
|
|
|
@ -9,10 +9,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
|
|||
{
|
||||
public bool UseRGBDSSyntax;
|
||||
|
||||
public override IEnumerable<string> AvailableCpus
|
||||
{
|
||||
get { yield return "Z80GB"; }
|
||||
}
|
||||
public override IEnumerable<string> AvailableCpus { get; } = new[] { "LR35902" };
|
||||
|
||||
public override string PCRegisterName => "PC";
|
||||
|
||||
|
|
Loading…
Reference in New Issue