-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# Renesas NEC850 Architecture Plugin | ||
|
||
This Binary Ninja plugin provides a native implemantion for the Renesas RH850/V850 architectue. The main reason for writing this from scratch instead of using existing plugin is that any Architecture plugin wirtten in Python is not usable for large binaries as the analysis takes ages. Therefore, this is a complete coverage of this architecture wirtten purely in C/C++. | ||
This Binary Ninja plugin provides a native implementation for the Renesas RH850/V850 architecture. The main reason for writing this from scratch instead of using existing plugin is that any Architecture plugin written in Python is not usable for large binaries as the analysis takes ages. Therefore, this is a complete coverage of this architecture written purely in C/C++. | ||
|
||
## Install | ||
|
||
1. Clone this repo: `git clone TODO && cd nec850_arch` | ||
1. Clone this repo: `git clone https://github.com/Accenture/NEC850_Architecture && cd NEC850_Architecture` | ||
2. Fetch submodules: `git submodule update --init --recursive` | ||
3. CMake things: `mkdir build && cd build && cmake .. -TODO=/opt/binaryninja` (Replace the `/opt/binaryninja` string at the end with an actual install path of your instance) | ||
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 libnec850_arch.so ~/binaryninja/plugins/` (Replace the last part of the command with valid path to the plugins directory for your platform) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters