From 7cc3fdec4b2ba7673e44a881dda9ffc7b978e8c3 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 14 Dec 2014 17:27:45 +0000 Subject: [PATCH] Add PCRegisterName to IDisassemblable --- BizHawk.Emulation.Common/Interfaces/IDisassemblable.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BizHawk.Emulation.Common/Interfaces/IDisassemblable.cs b/BizHawk.Emulation.Common/Interfaces/IDisassemblable.cs index 4d53d34362..bdd106ec90 100644 --- a/BizHawk.Emulation.Common/Interfaces/IDisassemblable.cs +++ b/BizHawk.Emulation.Common/Interfaces/IDisassemblable.cs @@ -12,6 +12,11 @@ namespace BizHawk.Emulation.Common /// string Cpu { get; set; } + /// + /// Returns the name of the Program Counter Register for the current Cpu + /// + string PCRegisterName { get; } + /// /// Gets a list of Cpus that can be used when setting the Cpu property ///