This commit is contained in:
comet
2020-01-26 20:06:35 -06:00
committed by dragonmacher
parent 4361f39fe2
commit af50a7e615
4 changed files with 4 additions and 5 deletions
+1 -2
View File
@@ -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.&nbsp; Global menu and toolbar actions have been
changed to accomodate snapshot views.&nbsp; Global actions now operate
changed to accommodate snapshot views.&nbsp; Global actions now operate
on whatever component has focus (the component whose header bar is
colored blue).&nbsp; 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
@@ -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);