From 8306768c765a8fb7029ac5dcc19cc1ed1370942d Mon Sep 17 00:00:00 2001 From: brandman211 Date: Mon, 30 Jul 2012 02:34:53 +0000 Subject: [PATCH] Enabled SWAP. Works as expected, but the next instruction is an MVI@ that wants to read from 0x7000, which I think is made available to cartridges. Not sure where to go from here. --- BizHawk.Emulation/CPUs/CP1610/Execute.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/BizHawk.Emulation/CPUs/CP1610/Execute.cs b/BizHawk.Emulation/CPUs/CP1610/Execute.cs index 17f66d744f..e499bcaf1e 100644 --- a/BizHawk.Emulation/CPUs/CP1610/Execute.cs +++ b/BizHawk.Emulation/CPUs/CP1610/Execute.cs @@ -252,7 +252,6 @@ namespace BizHawk.Emulation.CPUs.CP1610 case 0x045: case 0x046: case 0x047: - throw new NotImplementedException(); dest = (byte)(opcode & 0x3); dest_value = Register[dest]; lower = dest_value & 0xFF;