Metadata-Version: 2.1
Name: rvnewop
Version: 0.7.2
Summary: A RISC-V New Instruction Recommender System 
Home-page: https://github.com/riscv-newop/riscv-newop
License: BSD-2-Clause
Author: Pranoy Dutta, Tanvi Mehta, Nagendra Gulur
Author-email: pranoydll@gmail.com
Description-Content-Type: text/markdown
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Requires-Dist: bitarray >= 1.2.2

# riscv-newop
[![PyPI version](https://badge.fury.io/py/rvnewop.svg)](https://badge.fury.io/py/rvnewop)
[![Build Status](https://travis-ci.com/riscv-newop/riscv-newop.svg?branch=master)](https://travis-ci.com/riscv-newop/riscv-newop)
> A RISC-V New Instruction Recommender System

## Installation
```commandline
# preferably inside of a venv
python3 -m pip install rvnewop
```

## Usage
```Python
from rvnewop import RV32
from bitarray import bitarray

isa_model = RV32("32I")

print(isa_model.decodeHex("00e787b3"))
```
output
```commandline
add a5,a5,a4
```

