BizHawk/BizHawk.Emulation.Cores/Computers/Commodore64/C64.IDriveLight.cs

11 lines
387 B
C#
Raw Normal View History

2014-12-18 18:39:55 +00:00
using BizHawk.Emulation.Common;
namespace BizHawk.Emulation.Cores.Computers.Commodore64
{
public partial class C64 : IDriveLight
{
2017-05-30 17:09:46 +00:00
public bool DriveLightEnabled => _board != null && (_board.CartPort.DriveLightEnabled || _board.Serial.DriveLightEnabled);
public bool DriveLightOn => _board != null && (_board.CartPort.DriveLightOn || _board.Serial.DriveLightOn);
2014-12-18 18:39:55 +00:00
}
}