-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
27 lines (27 loc) · 1.49 KB
/
plugin.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"pluginmetadataversion" : 2,
"name": "NEC850 Architecture",
"type": ["architecture"],
"api": ["C++"],
"description": "Architecture plugin for Renesas RH850/V850 family of processors.",
"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."
},
"platforms" : ["Darwin", "Linux", "Windows"],
"installinstructions" : {
"Darwin" : "N/A",
"Linux" : "N/A",
"Windows" : "N/A"
},
"dependencies": {
"pip": [],
"apt": [],
"installers": [],
"other": []
},
"version": "1.0",
"author": "Accenture (Martin Petran)",
"minimumbinaryninjaversion": 4333
}