From a55216e3c6c5ea3932c8d00da302df960d2ad22b Mon Sep 17 00:00:00 2001 From: pagefault <> Date: Tue, 5 Jul 2005 21:32:52 +0000 Subject: [PATCH] Port over Game60hzcall() --- zsnes/src/cpu/executec.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/zsnes/src/cpu/executec.c b/zsnes/src/cpu/executec.c index 2fa54695..5adbe584 100755 --- a/zsnes/src/cpu/executec.c +++ b/zsnes/src/cpu/executec.c @@ -33,3 +33,15 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. #define DIR_SLASH "\\" #endif #include "../gblvars.h" + + +//Start of execute.asm goodness +extern unsigned char t1cc; +extern unsigned short int nextframe; + +void Game60hzcall() +{ + t1cc+; + nextframe++; +} +