Skip to content

Commit

Permalink
plugin update
Browse files Browse the repository at this point in the history
  • Loading branch information
Martyx00 committed Oct 1, 2024
1 parent 289eeea commit 3c503fa
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Binary Ninja PowerPC VLE Extenstion
# Renesas NEC850 Architecture Plugin

An architecture extension to allow working with VLE instructions under PowerPC.
When working with a binary that supports VLE just select `ppc` from the architecture list. Most common instructions should be lifted (including couple floating points).

## Install

1. Clone the repo: `git clone https://github.com/Martyx00/PowerPC-VLE-Extension && cd PowerPC-VLE-Extension`
2. Fetch submodules: `git submodule update --init --recursive`
3. CMake things: `mkdir build && cd build && cmake .. -DBN_INSTALL_DIR=/opt/binaryninja` (Replace the `/opt/binaryninja` string at the end with an actual install path of your instance)
4. Make things and install plugin: `make -j4 && cp libVLE_Extension.so ~/.binaryninja/plugins/` (Replace the last part of the command with valid path to the plugins directory for your platform)



8 changes: 4 additions & 4 deletions plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"pluginmetadataversion" : 2,
"name": "PowerPC VLE Extension",
"type": ["architecture"],
"api": ["python3"],
"api": ["cpp"],
"description": "PowerPC VLE support via architecture extension.",
"longdescription": "Architecture extension for default PPC architecture to support VLE instructions. This includes dissassembly for vector and floating point instructions (some float operations are also lifted).",
"license": {
Expand All @@ -12,7 +12,7 @@
"platforms" : ["Darwin", "Linux", "Windows"],
"installinstructions" : {
"Darwin" : "N/A",
"Linux" : "N/A",
"Linux" : "1. Clone the repo: `git clone https://github.com/Martyx00/PowerPC-VLE-Extension && cd PowerPC-VLE-Extension`\n2. Fetch submodules: `git submodule update --init --recursive`\n3. CMake things: `mkdir build && cd build && cmake .. -DBN_INSTALL_DIR=/opt/binaryninja` (Replace the `/opt/binaryninja` string at the end with an actual install path of your instance)\n4. Make things and install plugin: `make -j4 && cp libVLE_Extension.so ~/.binaryninja/plugins/` (Replace the last part of the command with valid path to the plugins directory for your platform)",
"Windows" : "N/A"
},
"dependencies": {
Expand All @@ -21,7 +21,7 @@
"installers": [],
"other": []
},
"version": "0.1",
"version": "1.0",
"author": "Martin Petran",
"minimumbinaryninjaversion": 4333
"minimumbinaryninjaversion": 6135
}

0 comments on commit 3c503fa

Please sign in to comment.