Coleco - very minor mostly useless changes
This commit is contained in:
parent
5283b4c06c
commit
81f0f031f3
|
@ -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;
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue