mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-06-20 08:18:36 +03:00
nice big refactor
This commit is contained in:
@ -1,3 +1,5 @@
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace X86Disassembler.X86;
|
||||
|
||||
using Handlers;
|
||||
@ -106,6 +108,8 @@ public class InstructionDecoder
|
||||
// Get a handler for the opcode
|
||||
var handler = _handlerFactory.GetHandler(opcode);
|
||||
|
||||
Debug.WriteLine($"Resolved handler {handler?.GetType().Name}");
|
||||
|
||||
bool handlerSuccess = false;
|
||||
|
||||
// Try to decode with a handler first
|
||||
|
Reference in New Issue
Block a user