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

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