C64 - implement IBoardInfo
This commit is contained in:
parent
91fb593ea1
commit
1222b4d5b5
|
@ -13,7 +13,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
|||
"SaxxonPike",
|
||||
isPorted: false,
|
||||
isReleased: false)]
|
||||
public sealed partial class C64 : IEmulator, IRegionable
|
||||
public sealed partial class C64 : IEmulator, IRegionable, IBoardInfo
|
||||
{
|
||||
public C64(CoreComm comm, IEnumerable<byte[]> roms, object settings, object syncSettings)
|
||||
{
|
||||
|
@ -54,6 +54,31 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
|
|||
ser.Register<IDriveLight>(this);
|
||||
}
|
||||
|
||||
// IBoardInfo
|
||||
[SaveState.DoNotSave]
|
||||
public string BoardName
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_board.CartPort.IsConnected)
|
||||
{
|
||||
return _board.CartPort.CartridgeType;
|
||||
}
|
||||
|
||||
if (_board.TapeDrive != null)
|
||||
{
|
||||
return "Tape Drive";
|
||||
}
|
||||
|
||||
if (_board.DiskDrive != null)
|
||||
{
|
||||
return "Disk Drive"; // TODO: drive types?
|
||||
}
|
||||
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
// IRegionable
|
||||
[SaveState.DoNotSave]
|
||||
public DisplayType Region { get; private set; }
|
||||
|
|
|
@ -17,6 +17,9 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.Cartridge
|
|||
Disconnect();
|
||||
}
|
||||
|
||||
[SaveState.DoNotSave]
|
||||
internal string CartridgeType => _cartridgeDevice.GetType().Name;
|
||||
|
||||
// ------------------------------------------
|
||||
|
||||
public int PeekHiExp(int addr)
|
||||
|
|
Loading…
Reference in New Issue