Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 972 Bytes

README.md

File metadata and controls

11 lines (7 loc) · 972 Bytes

Renesas NEC850 Architecture Plugin

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 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 .. -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)