mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-11 02:04:11 +00:00
m1n1.asm: Fix bad objdump variable
Signed-off-by: Hector Martin <marcan@marcan.st>
This commit is contained in:
parent
b9ddd74c02
commit
ae7228f398
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ class BaseAsm(object):
|
|||
self._call(OBJDUMP, f"-rd {self.elffile}")
|
||||
|
||||
def disassemble(self):
|
||||
output = self._get("OBJDUMP", f"-zd {self.elffile}")
|
||||
output = self._get(OBJDUMP, f"-zd {self.elffile}")
|
||||
|
||||
for line in output.split("\n"):
|
||||
if not line or line[0] != " ":
|
||||
|
|
Loading…
Reference in a new issue