GP-4152 msp430 improvements

This commit is contained in:
James 2023-12-28 13:57:10 +00:00 committed by ghidra1
parent 1281fb979b
commit 1e82a772c5
14 changed files with 692 additions and 66 deletions

View file

@ -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.