mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-21 08:21:34 +08:00
update
This commit is contained in:
@@ -377,7 +377,6 @@ src/main/help/help/topics/FunctionComparison/images/ListingCodeComparisonOptions
|
||||
src/main/help/help/topics/FunctionComparison/images/MultiFunctionComparisonWindow.png||GHIDRA||||END|
|
||||
src/main/help/help/topics/FunctionComparison/images/NavNextIcon.png||GHIDRA||||END|
|
||||
src/main/help/help/topics/FunctionComparison/images/NavPreviousIcon.png||GHIDRA||||END|
|
||||
src/main/help/help/topics/FunctionComparison/images/NavSelectedIcon.png||GHIDRA||||END|
|
||||
src/main/help/help/topics/FunctionComparison/images/RemoveFromComparisonIcon.png||GHIDRA||||END|
|
||||
src/main/help/help/topics/FunctionComparison/images/binaryData.gif||GHIDRA||||END|
|
||||
src/main/help/help/topics/FunctionComparison/images/class.png||GHIDRA||||END|
|
||||
@@ -725,7 +724,7 @@ src/main/help/help/topics/ShowInstructionInfoPlugin/images/ProcessorManualOption
|
||||
src/main/help/help/topics/ShowInstructionInfoPlugin/images/RawInstructionDisplay.png||GHIDRA||||END|
|
||||
src/main/help/help/topics/ShowInstructionInfoPlugin/images/ShowInstructionInfo.png||GHIDRA||||END|
|
||||
src/main/help/help/topics/ShowInstructionInfoPlugin/images/UnableToLaunch.png||GHIDRA||||END|
|
||||
src/main/help/help/topics/Snapshots/Snapshots.html||GHIDRA||reviewed||END|
|
||||
src/main/help/help/topics/Snapshots/Snapshots.html||GHIDRA||||END|
|
||||
src/main/help/help/topics/Snapshots/images/camera-photo.png||Tango Icons - Public Domain|||tango|END|
|
||||
src/main/help/help/topics/StackEditor/StackEditor.html||GHIDRA||||END|
|
||||
src/main/help/help/topics/StackEditor/images/Array.png||GHIDRA||||END|
|
||||
|
||||
@@ -65,7 +65,7 @@ snapshot view.<br>
|
||||
<blockquote>
|
||||
<p>Snapshot views can be docked with normal views or they can live in
|
||||
their own windows. Global menu and toolbar actions have been
|
||||
changed to accomodate snapshot views. Global actions now operate
|
||||
changed to accommodate snapshot views. Global actions now operate
|
||||
on whatever component has focus (the component whose header bar is
|
||||
colored blue). For example, if you have the connected <span
|
||||
style="font-style: italic;">Listing View</span> and a snapshot <span
|
||||
|
||||
@@ -357,7 +357,7 @@ class VarKeyInteriorNode extends VarKeyNode {
|
||||
|
||||
/**
|
||||
* Update the child key associated with the specified key index.
|
||||
* Other entries are shifted as necessary to accomodate the new key length for
|
||||
* Other entries are shifted as necessary to accommodate the new key length for
|
||||
* the updated entry.
|
||||
* @param index child key index
|
||||
* @param updateKey updated child node key
|
||||
|
||||
+1
-1
@@ -249,7 +249,7 @@ public class AVR32_ElfRelocationHandler extends ElfRelocationHandler {
|
||||
memory.setInt(relocationAddress, newValue);
|
||||
System.out.println(" HANDLED AVR relocation: R_AVR32_21S at "+relocationAddress + ", New = " + newValue);
|
||||
break;
|
||||
case AVR32_ElfRelocationConstants.R_AVR32_16U: //Use long to accomodate the Unsignedness...
|
||||
case AVR32_ElfRelocationConstants.R_AVR32_16U: //Use long to accommodate the Unsignedness...
|
||||
long newValueLong = ((symbolValue + addend) & 0x0000ffff);
|
||||
memory.setLong(relocationAddress, newValueLong);
|
||||
System.out.println(" HANDLED AVR relocation: R_AVR32_16U at "+relocationAddress + ", NewLong = " + newValueLong);
|
||||
|
||||
Reference in New Issue
Block a user