├── .gitignore ├── .idea ├── artifacts │ └── lib.xml ├── encodings.xml ├── libraries │ ├── Base.xml │ ├── Docking.xml │ ├── Generic.xml │ ├── Project.xml │ ├── SoftwareModeling.xml │ └── Utility.xml ├── misc.xml ├── modules.xml └── uiDesigner.xml ├── LICENSE.txt ├── Module.manifest ├── Readme.md ├── data ├── build.xml └── languages │ ├── ee_instructions.sinc │ ├── mips.sinc │ ├── mips32Instructions.sinc │ ├── mipsfloat.sinc │ ├── ps2EE.pspec │ ├── ps2_ee.sla │ ├── ps2_ee.slaspec │ ├── ps2ee.cspec │ └── ps2ee.ldefs └── lib ├── lib.iml └── src └── ghidra ├── app ├── plugin │ └── core │ │ └── analysis │ │ ├── PS2EEAddressAnalyzer.java │ │ ├── PS2EEPreAnalyzer.java │ │ └── PS2EESymbolAnalyzer.java └── util │ └── bin │ └── format │ └── elf │ ├── extend │ └── PS2EE_ElfExtension.java │ └── relocation │ ├── PS2EE_Elf64Relocation.java │ ├── PS2EE_ElfRelocationConstants.java │ └── PS2EE_ElfRelocationHandler.java └── program └── emulation └── PS2EEEmulateInstructionStateModifier.java /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/workspace.xml 2 | lib/ps2ee.jar 3 | *.class 4 | *.zip 5 | -------------------------------------------------------------------------------- /.idea/artifacts/lib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/.idea/artifacts/lib.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/libraries/Base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/.idea/libraries/Base.xml -------------------------------------------------------------------------------- /.idea/libraries/Docking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/.idea/libraries/Docking.xml -------------------------------------------------------------------------------- /.idea/libraries/Generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/.idea/libraries/Generic.xml -------------------------------------------------------------------------------- /.idea/libraries/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/.idea/libraries/Project.xml -------------------------------------------------------------------------------- /.idea/libraries/SoftwareModeling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/.idea/libraries/SoftwareModeling.xml -------------------------------------------------------------------------------- /.idea/libraries/Utility.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/.idea/libraries/Utility.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Module.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/Readme.md -------------------------------------------------------------------------------- /data/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/data/build.xml -------------------------------------------------------------------------------- /data/languages/ee_instructions.sinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/data/languages/ee_instructions.sinc -------------------------------------------------------------------------------- /data/languages/mips.sinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/data/languages/mips.sinc -------------------------------------------------------------------------------- /data/languages/mips32Instructions.sinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/data/languages/mips32Instructions.sinc -------------------------------------------------------------------------------- /data/languages/mipsfloat.sinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/data/languages/mipsfloat.sinc -------------------------------------------------------------------------------- /data/languages/ps2EE.pspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/data/languages/ps2EE.pspec -------------------------------------------------------------------------------- /data/languages/ps2_ee.sla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/data/languages/ps2_ee.sla -------------------------------------------------------------------------------- /data/languages/ps2_ee.slaspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/data/languages/ps2_ee.slaspec -------------------------------------------------------------------------------- /data/languages/ps2ee.cspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/data/languages/ps2ee.cspec -------------------------------------------------------------------------------- /data/languages/ps2ee.ldefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/data/languages/ps2ee.ldefs -------------------------------------------------------------------------------- /lib/lib.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/lib/lib.iml -------------------------------------------------------------------------------- /lib/src/ghidra/app/plugin/core/analysis/PS2EEAddressAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/lib/src/ghidra/app/plugin/core/analysis/PS2EEAddressAnalyzer.java -------------------------------------------------------------------------------- /lib/src/ghidra/app/plugin/core/analysis/PS2EEPreAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/lib/src/ghidra/app/plugin/core/analysis/PS2EEPreAnalyzer.java -------------------------------------------------------------------------------- /lib/src/ghidra/app/plugin/core/analysis/PS2EESymbolAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/lib/src/ghidra/app/plugin/core/analysis/PS2EESymbolAnalyzer.java -------------------------------------------------------------------------------- /lib/src/ghidra/app/util/bin/format/elf/extend/PS2EE_ElfExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/lib/src/ghidra/app/util/bin/format/elf/extend/PS2EE_ElfExtension.java -------------------------------------------------------------------------------- /lib/src/ghidra/app/util/bin/format/elf/relocation/PS2EE_Elf64Relocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/lib/src/ghidra/app/util/bin/format/elf/relocation/PS2EE_Elf64Relocation.java -------------------------------------------------------------------------------- /lib/src/ghidra/app/util/bin/format/elf/relocation/PS2EE_ElfRelocationConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/lib/src/ghidra/app/util/bin/format/elf/relocation/PS2EE_ElfRelocationConstants.java -------------------------------------------------------------------------------- /lib/src/ghidra/app/util/bin/format/elf/relocation/PS2EE_ElfRelocationHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/lib/src/ghidra/app/util/bin/format/elf/relocation/PS2EE_ElfRelocationHandler.java -------------------------------------------------------------------------------- /lib/src/ghidra/program/emulation/PS2EEEmulateInstructionStateModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigianb/ghidra-ps2ee/HEAD/lib/src/ghidra/program/emulation/PS2EEEmulateInstructionStateModifier.java --------------------------------------------------------------------------------