diff --git a/README.md b/README.md index 39beabb..82cee14 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/plugin.json b/plugin.json index a42b189..47736ce 100644 --- a/plugin.json +++ b/plugin.json @@ -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."