├── .gitignore ├── LICENSE ├── Module.manifest ├── README.md ├── data └── languages │ ├── mep.cspec │ ├── mep.ldefs │ ├── mep.pspec │ ├── mep.sinc │ └── mep.slaspec ├── release.sh ├── screenshot.png └── test └── test.S /.gitignore: -------------------------------------------------------------------------------- 1 | *.sla 2 | mep.zip 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/ghidra-mep/HEAD/LICENSE -------------------------------------------------------------------------------- /Module.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/ghidra-mep/HEAD/README.md -------------------------------------------------------------------------------- /data/languages/mep.cspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/ghidra-mep/HEAD/data/languages/mep.cspec -------------------------------------------------------------------------------- /data/languages/mep.ldefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/ghidra-mep/HEAD/data/languages/mep.ldefs -------------------------------------------------------------------------------- /data/languages/mep.pspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/ghidra-mep/HEAD/data/languages/mep.pspec -------------------------------------------------------------------------------- /data/languages/mep.sinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/ghidra-mep/HEAD/data/languages/mep.sinc -------------------------------------------------------------------------------- /data/languages/mep.slaspec: -------------------------------------------------------------------------------- 1 | define endian=little; 2 | 3 | @include "mep.sinc" 4 | -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/ghidra-mep/HEAD/release.sh -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/ghidra-mep/HEAD/screenshot.png -------------------------------------------------------------------------------- /test/test.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyzz/ghidra-mep/HEAD/test/test.S --------------------------------------------------------------------------------