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++.
- Clone this repo:
git clone https://github.com/Accenture/NEC850_Architecture && cd NEC850_Architecture
- Fetch submodules:
git submodule update --init --recursive
- 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) - 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)