From 09caf3c06b10e24e34fa8e55e35ebb22f67b87e0 Mon Sep 17 00:00:00 2001 From: Zach Riggle Date: Wed, 20 Apr 2016 18:15:44 -0700 Subject: [PATCH] Remove EFLAGS since it is x86-only --- pwndbg/emu/emulator.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pwndbg/emu/emulator.py b/pwndbg/emu/emulator.py index c8ff3e371..0057969cd 100644 --- a/pwndbg/emu/emulator.py +++ b/pwndbg/emu/emulator.py @@ -390,15 +390,12 @@ class Emulator(object): pc = pc or self.pc insn = pwndbg.disasm.one(pc) debug("# Single-stepping at %#x: %s %s" % (pc, insn.mnemonic, insn.op_str)) - debug('# EFLAGS before: %#x' % self.eflags) try: self.emulate_with_hook(self.single_step_hook_code, count=1) except U.unicorn.UcError: self._singlestep = (None, None) - debug('# EFLAGS after: %#x' % self.eflags) - return self._singlestep def single_step_iter(self, pc=None):