-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added parse.py, constants.py and Makefile modifications to generate .…
…yaml files. All files were originally from riscv-opcodes. Signed-off-by: Afonso Oliveira <Afonso.Oliveira@synopsys.com>
- Loading branch information
1 parent
c2ebc28
commit 4ece3f0
Showing
4 changed files
with
1,222 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
RATIFIED_EXTENSIONS := "rv*" | ||
UNRATIFIED_EXTENSIONS := "unratified/rv*" | ||
|
||
default: yaml_all | ||
|
||
.PHONY: yaml_all | ||
yaml_all: yaml_ratified yaml_unratified | ||
|
||
.PHONY: yaml_ratified | ||
yaml_ratified: | ||
@python3 parse.py -yaml $(RATIFIED_EXTENSIONS) | ||
|
||
.PHONY: yaml_unratified | ||
yaml_unratified: | ||
@python3 parse.py -yaml $(UNRATIFIED_EXTENSIONS) | ||
|
||
.PHONY: clean | ||
clean: | ||
rm -rf yaml_output |
Binary file not shown.
Oops, something went wrong.