From 5a686f195dffa449b1e30366bec314017b54db7a Mon Sep 17 00:00:00 2001 From: scrimpey Date: Sun, 21 Jun 2015 14:34:33 +0000 Subject: [PATCH] Apple II - remove vestigial method --- BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs b/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs index c9e29a6ceb..017d894d90 100644 --- a/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs +++ b/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs @@ -171,12 +171,5 @@ namespace BizHawk.Emulation.Cores.Computers.AppleII Frame++; } - - private string readOpcode(ushort pc, Func peeker) - { - int unused; - return Cores.Components.M6502.MOS6502X.Disassemble(pc, out unused, peeker); - } - } }