2012-12-05 21:07:51 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.Emulation.Computers.Commodore64.MOS
|
|
|
|
|
{
|
|
|
|
|
public class CassettePort
|
|
|
|
|
{
|
2012-12-06 04:29:08 +00:00
|
|
|
|
public Func<bool> DeviceReadLevel;
|
|
|
|
|
public Func<bool> DeviceReadMotor;
|
|
|
|
|
public Action<bool> DeviceWriteButton;
|
|
|
|
|
public Action<bool> DeviceWriteLevel;
|
|
|
|
|
public Func<bool> SystemReadButton;
|
|
|
|
|
public Func<bool> SystemReadLevel;
|
|
|
|
|
public Action<bool> SystemWriteLevel;
|
|
|
|
|
public Action<bool> SystemWriteMotor;
|
|
|
|
|
|
|
|
|
|
// Connect() needs to set System functions above
|
|
|
|
|
|
2012-12-05 21:07:51 +00:00
|
|
|
|
public void HardReset()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|