Skip to content

Commit

Permalink
Merge pull request openhwgroup#1743 from JeanRochCoulon/embbeded0
Browse files Browse the repository at this point in the history
Add new config target called cv32a6_embedded
  • Loading branch information
JeanRochCoulon authored Mar 24, 2023
2 parents 712747c + 801f5e4 commit 3270caa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitlab-ci/cva6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,8 @@ pub_synthesis:
PERIOD: ["1.1"]
- TARGET: [cv32a60x]
PERIOD: ["0.95"]
- TARGET: [cv32a6_embedded]
PERIOD: ["0.85"]
variables:
INPUT_DELAY: "0.46"
OUTPUT_DELAY: "0.11"
Expand Down
3 changes: 3 additions & 0 deletions cva6/sim/cva6.py
Original file line number Diff line number Diff line change
Expand Up @@ -858,6 +858,9 @@ def load_config(args, cwd):
elif args.target == "cv32a60x":
args.mabi = "ilp32"
args.isa = "rv32imc" # Step1 configuration has no A extension.
elif args.target == "cv32a6_embedded":
args.mabi = "ilp32"
args.isa = "rv32imc" # Step1 configuration has no A extension.
elif args.target == "cv32a6_imac_sv0":
args.mabi = "ilp32"
args.isa = "rv32imac"
Expand Down

0 comments on commit 3270caa

Please sign in to comment.