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

11 lines
419 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
{
public bool DriveLightEnabled { get { return _board != null && (_board.CartPort.DriveLightEnabled || _board.Serial.DriveLightEnabled); } }
2017-04-24 13:35:05 +00:00
public bool DriveLightOn { get { return _board != null && (_board.CartPort.DriveLightOn || _board.Serial.DriveLightOn); } }
2014-12-18 18:39:55 +00:00
}
}