BizHawk/BizHawk.Emulation.Cores/Consoles/GCE/Vectrex/SerialPort.cs

38 lines
478 B
C#
Raw Normal View History

2019-03-30 21:09:04 +00:00
using System;
using BizHawk.Emulation.Common;
using BizHawk.Common.NumberExtensions;
using BizHawk.Common;
namespace BizHawk.Emulation.Cores.Consoles.Vectrex
{
public class SerialPort
{
public VectrexHawk Core { get; set; }
public byte ReadReg(int addr)
{
return 0xFF;
}
public void WriteReg(int addr, byte value)
{
}
public void serial_transfer_tick()
{
}
public void Reset()
{
}
public void SyncState(Serializer ser)
{
}
}
}