BizHawk/BizHawk.Emulation/Computers/Commodore64/MOS/MOS6522.cs

44 lines
660 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BizHawk.Emulation.Computers.Commodore64.MOS
{
// via
public class MOS6522 : Timer, IStandardIO
{
// ------------------------------------
public void ExecutePhase1()
{
}
public void ExecutePhase2()
{
}
// ------------------------------------
public byte Peek(int addr)
{
return 0;
}
public void Poke(int addr, byte val)
{
}
public byte Read(ushort addr)
{
return 0;
}
public void Write(ushort addr, byte val)
{
}
// ------------------------------------
}
}