Spaces:
Sleeping
Sleeping
Commit ·
567f66d
1
Parent(s): 260acbf
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, 7)
|
| 23 |
|
| 24 |
def disassemble_bytes(byte_data, architecture):
|
| 25 |
with tempfile.NamedTemporaryFile(suffix=".bin", delete=False) as temp_bin_file:
|