Skip to content

Commit

Permalink
readme and plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Martyx00 committed Oct 11, 2024
1 parent 79c8c39 commit cc81f94
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
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)

2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": ["architecture"],
"api": ["C++"],
"description": "Architecture plugin for Renesas RH850/V850 family of processors.",
"longdescription": "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++.",
"longdescription": "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++.",
"license": {
"name": "Apache-2.0",
"text": "Copyright 2024 Accenture\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\n\thttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License."
Expand Down

0 comments on commit cc81f94

Please sign in to comment.