MCPcopy Create free account
hub / github.com/qilingframework/qiling / ask_start_end

Function ask_start_end

qltui.py:554–561  ·  view source on GitHub ↗

Ask for start and end points for emulator start

()

Source from the content-addressed store, hash-verified

552
553
554def ask_start_end():
555 """
556 Ask for start and end points for emulator start
557 """
558 start = questionary.text("address_start:").ask()
559 end = questionary.text("address_end:", default="0x0").ask()
560
561 return {"start": int(start, 16), "end": int(end, 16)}
562
563
564def ask_address():

Callers 1

hookFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected