Coleco - very minor mostly useless changes

This commit is contained in:
adelikat 2012-03-25 17:39:50 +00:00
parent 5283b4c06c
commit 81f0f031f3
1 changed files with 8 additions and 1 deletions

View File

@ -4,6 +4,7 @@ using System.Linq;
using System.Text;
using BizHawk.Emulation.CPUs.Z80;
using BizHawk.Emulation.Sound;
using BizHawk.Emulation.Consoles.Sega;
namespace BizHawk.Emulation.Consoles.Coleco
{
@ -11,6 +12,7 @@ namespace BizHawk.Emulation.Consoles.Coleco
{
public byte[] rom;
public Z80A cpu;
public VDP Vdp; //adelikat: Using the SMS one for now
public byte ReadMemory(ushort addr)
{
@ -24,11 +26,16 @@ namespace BizHawk.Emulation.Consoles.Coleco
public void HardReset()
{
_lagcount = 0;
cpu = new Z80A();
}
public void FrameAdvance(bool render)
{
_frame++;
_islag = true;
}
}