mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GT-2845 - updated ELF Loader to utilize FileBytes and eliminated its use
of MemoryBlockUtil Conflicts: Ghidra/Features/Base/src/main/java/ghidra/app/util/opinion/ElfLoader.java
This commit is contained in:
parent
7b5b1fb542
commit
12af9291c9
8 changed files with 82 additions and 98 deletions
|
@ -163,7 +163,7 @@ abstract class MemoryMapDBAdapter {
|
|||
* block data will be initialized to zero (0x00).
|
||||
* @param name the name of the block
|
||||
* @param startAddr the start address of the block.
|
||||
* @param is data source
|
||||
* @param is data source or null for zero initialization
|
||||
* @param length size of block
|
||||
* @param permissions the new block permissions
|
||||
* @return new memory block
|
||||
|
|
|
@ -110,7 +110,7 @@ public interface Memory extends AddressSetView {
|
|||
* Create an initialized memory block and add it to this Memory.
|
||||
* @param name block name
|
||||
* @param start start address of the block
|
||||
* @param is source of the data used to fill the block.
|
||||
* @param is source of the data used to fill the block or null for zero initialization.
|
||||
* @param length the size of the block
|
||||
* @param monitor task monitor
|
||||
* @param overlay if true, the block will be created as an OVERLAY which means that a new
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue