-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from FlyGoat/update
Bump to upstream latest
- Loading branch information
Showing
9 changed files
with
73 additions
and
34 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
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
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 |
---|---|---|
@@ -1,45 +1,42 @@ | ||
import os.path | ||
__dir__ = os.path.split(os.path.abspath(os.path.realpath(__file__)))[0] | ||
data_location = os.path.join(__dir__, "verilog") | ||
src = "https://github.com/cliffordwolf/picorv32" | ||
src = "https://github.com/YosysHQ/picorv32" | ||
|
||
# Module version | ||
version_str = "1.0.post194" | ||
version_tuple = (1, 0, 194) | ||
version_str = "1.0.post218" | ||
version_tuple = (1, 0, 218) | ||
try: | ||
from packaging.version import Version as V | ||
pversion = V("1.0.post194") | ||
pversion = V("1.0.post218") | ||
except ImportError: | ||
pass | ||
|
||
# Data version info | ||
data_version_str = "1.0.post52" | ||
data_version_tuple = (1, 0, 52) | ||
data_version_str = "1.0.post70" | ||
data_version_tuple = (1, 0, 70) | ||
try: | ||
from packaging.version import Version as V | ||
pdata_version = V("1.0.post52") | ||
pdata_version = V("1.0.post70") | ||
except ImportError: | ||
pass | ||
data_git_hash = "f00a88c36eaab478b64ee27d8162e421049bcc66" | ||
data_git_describe = "v1.0-52-gf00a88c" | ||
data_git_hash = "87c89acc18994c8cf9a2311e871818e87d304568" | ||
data_git_describe = "v1.0-70-g87c89acc1899" | ||
data_git_msg = """\ | ||
commit f00a88c36eaab478b64ee27d8162e421049bcc66 | ||
Merge: 1d9f5b7 e8dbd9a | ||
Author: Claire Xen <[email protected]> | ||
Date: Mon Jan 3 16:03:13 2022 +0100 | ||
commit 87c89acc18994c8cf9a2311e871818e87d304568 | ||
Author: Miodrag Milanovic <[email protected]> | ||
Date: Mon Jun 17 08:20:13 2024 +0200 | ||
Merge pull request #209 from YosysHQ/micko/cleanups | ||
Cleanups | ||
clean Makefile | ||
""" | ||
|
||
# Tool version info | ||
tool_version_str = "0.0.post142" | ||
tool_version_tuple = (0, 0, 142) | ||
tool_version_str = "0.0.post148" | ||
tool_version_tuple = (0, 0, 148) | ||
try: | ||
from packaging.version import Version as V | ||
ptool_version = V("0.0.post142") | ||
ptool_version = V("0.0.post148") | ||
except ImportError: | ||
pass | ||
|
||
|
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,37 @@ | ||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
riscv-formal: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout picorv32.v | ||
uses: actions/checkout@v4 | ||
with: | ||
sparse-checkout: | | ||
picorv32.v | ||
sparse-checkout-cone-mode: false | ||
- name: Checkout riscv-formal | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: YosysHQ/riscv-formal | ||
path: riscv-formal | ||
- name: cp picorv32.v | ||
run: | | ||
cp picorv32.v -t riscv-formal/cores/picorv32 | ||
- uses: YosysHQ/setup-oss-cad-suite@v3 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: make checks | ||
run: | | ||
cd riscv-formal/cores/picorv32 | ||
make checks -j$(nproc) | ||
- name: make check | ||
run: | | ||
cd riscv-formal/cores/picorv32 | ||
make check |
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
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
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
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
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