├── .antProperties.xml ├── .classpath ├── .gitignore ├── .project ├── Module.manifest ├── README.md ├── data ├── README.txt ├── build.xml └── languages │ ├── rx62t.cspec │ ├── rx62t.ldefs │ ├── rx62t.opinion │ ├── rx62t.pspec │ ├── rx62t.sinc │ └── rx62t.slaspec ├── extension.properties ├── ghidra_scripts └── README.txt ├── lib └── README.txt ├── os ├── linux64 │ └── README.txt ├── osx64 │ └── README.txt └── win64 │ └── README.txt └── src ├── main ├── help │ └── help │ │ ├── TOC_Source.xml │ │ ├── shared │ │ └── Frontpage.css │ │ └── topics │ │ └── rx62t │ │ └── help.html ├── java │ └── rx62t │ │ ├── RX62TAnalyzer.java │ │ └── RX62TLoader.java └── resources │ └── images │ └── README.txt └── test └── java └── README.test.txt /.antProperties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/.antProperties.xml -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/.project -------------------------------------------------------------------------------- /Module.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/README.md -------------------------------------------------------------------------------- /data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/data/README.txt -------------------------------------------------------------------------------- /data/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/data/build.xml -------------------------------------------------------------------------------- /data/languages/rx62t.cspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/data/languages/rx62t.cspec -------------------------------------------------------------------------------- /data/languages/rx62t.ldefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/data/languages/rx62t.ldefs -------------------------------------------------------------------------------- /data/languages/rx62t.opinion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/data/languages/rx62t.opinion -------------------------------------------------------------------------------- /data/languages/rx62t.pspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/data/languages/rx62t.pspec -------------------------------------------------------------------------------- /data/languages/rx62t.sinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/data/languages/rx62t.sinc -------------------------------------------------------------------------------- /data/languages/rx62t.slaspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/data/languages/rx62t.slaspec -------------------------------------------------------------------------------- /extension.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/extension.properties -------------------------------------------------------------------------------- /ghidra_scripts/README.txt: -------------------------------------------------------------------------------- 1 | Java source directory to hold module-specific Ghidra scripts. 2 | -------------------------------------------------------------------------------- /lib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/lib/README.txt -------------------------------------------------------------------------------- /os/linux64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/os/linux64/README.txt -------------------------------------------------------------------------------- /os/osx64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/os/osx64/README.txt -------------------------------------------------------------------------------- /os/win64/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/os/win64/README.txt -------------------------------------------------------------------------------- /src/main/help/help/TOC_Source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/src/main/help/help/TOC_Source.xml -------------------------------------------------------------------------------- /src/main/help/help/shared/Frontpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/src/main/help/help/shared/Frontpage.css -------------------------------------------------------------------------------- /src/main/help/help/topics/rx62t/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/src/main/help/help/topics/rx62t/help.html -------------------------------------------------------------------------------- /src/main/java/rx62t/RX62TAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/src/main/java/rx62t/RX62TAnalyzer.java -------------------------------------------------------------------------------- /src/main/java/rx62t/RX62TLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/src/main/java/rx62t/RX62TLoader.java -------------------------------------------------------------------------------- /src/main/resources/images/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/src/main/resources/images/README.txt -------------------------------------------------------------------------------- /src/test/java/README.test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redballoonsecurity/rx-proc-ghidra/HEAD/src/test/java/README.test.txt --------------------------------------------------------------------------------