Skip to content

Commit

Permalink
Added missing files. Updated to 10.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lab313ru committed Jun 27, 2023
1 parent ce7a01f commit d8d36da
Show file tree
Hide file tree
Showing 6 changed files with 707 additions and 85 deletions.
659 changes: 659 additions & 0 deletions .classpath

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@
/dist/
/samples/
*.class
.antProperties.xml
/.classpath
/.project
24 changes: 24 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>AmigaHunk</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<linkedResources>
<link>
<name>Ghidra</name>
<type>2</type>
<location>D:/Ghidra/ghidra_10.3.1_PUBLIC</location>
</link>
</linkedResources>
</projectDescription>
58 changes: 0 additions & 58 deletions src/main/help/help/shared/Frontpage.css

This file was deleted.

46 changes: 23 additions & 23 deletions src/main/help/help/topics/amigahunk/help.html
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<HTML>
<HEAD>
<META name="generator" content=
"HTML Tidy for Java (vers. 2009-12-01), see jtidy.sourceforge.net">
<META http-equiv="Content-Language" content="en-us">
<META http-equiv="Content-Type" content="text/html; charset=windows-1252">
<META name="GENERATOR" content="Microsoft FrontPage 4.0">
<META name="ProgId" content="FrontPage.Editor.Document">

<TITLE>Skeleton Help File for a Module</TITLE>
<LINK rel="stylesheet" type="text/css" href="../../shared/Frontpage.css">
</HEAD>

<BODY>
<H1><a name="HelpAnchor"></a>Skeleton Help File for a Module</H1>

<P>This is a simple skeleton help topic. For a better description of what should and should not
go in here, see the "sample" Ghidra extension in the Extensions/Ghidra directory, or see your
favorite help topic. In general, language modules do not have their own help topics.</P>
</BODY>
</HTML>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<HTML>
<HEAD>
<META name="generator" content=
"HTML Tidy for Java (vers. 2009-12-01), see jtidy.sourceforge.net">
<META http-equiv="Content-Language" content="en-us">
<META http-equiv="Content-Type" content="text/html; charset=windows-1252">
<META name="GENERATOR" content="Microsoft FrontPage 4.0">
<META name="ProgId" content="FrontPage.Editor.Document">

<TITLE>Skeleton Help File for a Module</TITLE>
<LINK rel="stylesheet" type="text/css" href="help/shared/DefaultStyle.css">
</HEAD>

<BODY>
<H1><a name="HelpAnchor"></a>Skeleton Help File for a Module</H1>

<P>This is a simple skeleton help topic. For a better description of what should and should not
go in here, see the "sample" Ghidra extension in the Extensions/Ghidra directory, or see your
favorite help topic. In general, language modules do not have their own help topics.</P>
</BODY>
</HTML>
2 changes: 1 addition & 1 deletion src/main/java/amigahunk/AmigaHunkAnalyzer.java
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ public AddressSetView flowConstants(final Program program, Address flowStart,
throws CancelledException {

ConstantPropagationContextEvaluator eval =
new ConstantPropagationContextEvaluator(true) {
new ConstantPropagationContextEvaluator(monitor, true) {
@Override
public boolean evaluateContext(VarnodeContext context, Instruction instr) {
String mnemonic = instr.getMnemonicString();
Expand Down

0 comments on commit d8d36da

Please sign in to comment.