mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-4152 msp430 improvements
This commit is contained in:
parent
1281fb979b
commit
1e82a772c5
14 changed files with 692 additions and 66 deletions
|
@ -836,7 +836,7 @@ public interface Memory extends AddressSetView {
|
|||
throws MemoryAccessException;
|
||||
|
||||
/**
|
||||
* Write short at addr in big endian order.
|
||||
* Write short at addr in default endian order.
|
||||
*
|
||||
* @param addr the Address of the short.
|
||||
* @param value the data to write.
|
||||
|
@ -857,7 +857,7 @@ public interface Memory extends AddressSetView {
|
|||
public void setShort(Address addr, short value, boolean bigEndian) throws MemoryAccessException;
|
||||
|
||||
/**
|
||||
* Write int at addr.
|
||||
* Write int at addr in the default endian order.
|
||||
*
|
||||
* @param addr the Address of the int.
|
||||
* @param value the data to write.
|
||||
|
@ -879,7 +879,7 @@ public interface Memory extends AddressSetView {
|
|||
public void setInt(Address addr, int value, boolean bigEndian) throws MemoryAccessException;
|
||||
|
||||
/**
|
||||
* Write long at addr.
|
||||
* Write long at addr in the default endian order.
|
||||
*
|
||||
* @param addr the Address of the long.
|
||||
* @param value the data to write.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue