From 63f74c7b23bd861c3873266ae7ba759ee30d8af6 Mon Sep 17 00:00:00 2001 From: Ian C Date: Wed, 11 Jul 2012 23:15:47 +0000 Subject: Added an opcode-level callback method for running the CPU. Added a simple mode to the clock. --- src/Noddybox.Emulation.EightBit/ICpu.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Noddybox.Emulation.EightBit') diff --git a/src/Noddybox.Emulation.EightBit/ICpu.cs b/src/Noddybox.Emulation.EightBit/ICpu.cs index 1ee7781..39e31cb 100644 --- a/src/Noddybox.Emulation.EightBit/ICpu.cs +++ b/src/Noddybox.Emulation.EightBit/ICpu.cs @@ -26,7 +26,7 @@ namespace Noddybox.Emulation.EightBit /// the callback. /// True if the CPU should continue executing, or false if not. Users should simply /// return Clock.VBL if they need no other than clock control. - public delegate bool CpuCallback(object sender); + public delegate bool CpuCallback(ICpu sender); /// /// Defines an 8-bit CPU. -- cgit v1.2.3