9 lines
225 B
Python
9 lines
225 B
Python
|
from ghidra_assistant.ghidra_assistant import GhidraAssistant
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
rom = open("S7/rom.bin", 'rb').read()
|
||
|
|
||
|
ga = GhidraAssistant()
|
||
|
ga.ghidra.add_memory(rom, 0x0, True, "ROM")
|
||
|
|
||
|
pass
|