Address Space Creation Post-Loading #7364
Answered
by
ryanmkurtz
rgood-zetier
asked this question in
Q&A
-
Address space generation is only available at binary load time (as far as I am aware). In a loader I am able to make the following call to generate an overlay address space: program.createOverlaySpace(newAddressSpace, programAddressSpace); However, createOverlaySpace is not available in the Ghidra scripting API. Is this simply because the work hasn't been done yet to expose it, or is there a deeper reason? |
Beta Was this translation helpful? Give feedback.
Answered by
ryanmkurtz
Jan 10, 2025
Replies: 1 comment 2 replies
-
What do you mean by it is not available in the scripting API? Can't you just call the same |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
rgood-zetier
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What do you mean by it is not available in the scripting API? Can't you just call the same
program.createOverlaySpace()
method from a script?