Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hint clvm_tools.binutils.disassemble() #90

Merged
merged 2 commits into from
Oct 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion clvm_tools/binutils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import string
from typing import Dict

from clvm import KEYWORD_FROM_ATOM, KEYWORD_TO_ATOM
from clvm.casts import int_from_bytes, int_to_bytes
from clvm.SExp import SExp

from ir.reader import read_ir
from ir.writer import write_ir
Expand Down Expand Up @@ -80,7 +82,7 @@ def disassemble_to_ir(sexp, keyword_from_atom, allow_keyword=None):
return sexp.to((type_for_atom(as_atom), as_atom))


def disassemble(sexp, keyword_from_atom=KEYWORD_FROM_ATOM):
def disassemble(sexp: SExp, keyword_from_atom: Dict[bytes, str] = KEYWORD_FROM_ATOM) -> str:
symbols = disassemble_to_ir(sexp, keyword_from_atom=keyword_from_atom)
return write_ir(symbols)

Expand Down