You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Jean-François Nguyen 331e4b76ba insn: use records to define instruction encodings.
Before this commit, instructions were defined by a sequence of Const
for fixed fields (e.g. PO/XO) and AnyConst for others (e.g. operands).
This approach restricted their use to BMC use-cases, and prevented them
from appearing in VCD traces.

After this commit, an instruction encoding is defined by a Record. As
fields can now be set to arbitrary values, the corresponding InsnSpec
will only assert `pfv.stb` if `pfv.insn` matches a valid encoding (i.e.
fixed fields have correct values). On the other side, BMC testbenches
will drive `pfv.insn` with an AnyConst, and assume `pfv.stb` is high.
2 years ago
cores/microwatt session: fix subcommand help messages. 2 years ago
power_fv insn: use records to define instruction encodings. 2 years ago
.gitignore initial push with a gitignore file 2 years ago
LICENSE.txt Add license. 2 years ago
README.md Add very basic README. 2 years ago
poetry.lock Add support for remote builds over SSH. 2 years ago
pyproject.toml Add support for remote builds over SSH. 2 years ago

README.md

power-fv

(TODO)

Prerequisites

Installation

pip3 install poetry --user
poetry install

See the cores folder for usage examples.