Commit
·
260acbf
1
Parent(s):
80ffc07
update
Browse files
main.py
CHANGED
@@ -19,7 +19,7 @@ def trim(str, n):
|
|
19 |
return "\n".join(str.splitlines()[n:])
|
20 |
|
21 |
def trim_objdump(str):
|
22 |
-
return trim(str,
|
23 |
|
24 |
def disassemble_bytes(byte_data, architecture):
|
25 |
with tempfile.NamedTemporaryFile(suffix=".bin", delete=False) as temp_bin_file:
|
|
|
19 |
return "\n".join(str.splitlines()[n:])
|
20 |
|
21 |
def trim_objdump(str):
|
22 |
+
return trim(str, 6)
|
23 |
|
24 |
def disassemble_bytes(byte_data, architecture):
|
25 |
with tempfile.NamedTemporaryFile(suffix=".bin", delete=False) as temp_bin_file:
|