Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yosys-tests
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
yosys-tests
Commits
b79541a7
Commit
b79541a7
authored
Jul 13, 2019
by
Eddie Hung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add {ecp5,xilinx}_{,abc9} targets
parent
995d7a78
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletions
+17
-1
bigsim/Makefile
+1
-1
bigsim/run.sh
+16
-0
No files found.
bigsim/Makefile
View file @
b79541a7
...
...
@@ -24,6 +24,6 @@ clean::
rm
-f
$
(
1
)
_cmos.status
$
(
1
)
_ice40.status
$
(
1
)
_falsify.status
endef
$(eval
$(call
template,navre,cmos
ice40
ice40_abc9))
$(eval
$(call
template,navre,cmos
ice40
ice40_abc9
ecp5
ecp5_abc9
xilinx
xilinx_abc9
))
.PHONY
:
all clean
bigsim/run.sh
View file @
b79541a7
...
...
@@ -40,6 +40,22 @@ case "$2" in
yosys
-ql
synthlog.txt
-p
"synth_ice40 -abc9 -top
$TOP
; write_verilog synth.v"
$rtl_files
iverilog_cmd
=
"
$iverilog_cmd
synth.v
$TECHLIBS_PREFIX
/ice40/cells_sim.v"
;;
ecp5
)
yosys
-ql
synthlog.txt
-p
"synth_ecp5 -top
$TOP
; write_verilog synth.v"
$rtl_files
iverilog_cmd
=
"
$iverilog_cmd
synth.v
$TECHLIBS_PREFIX
/ecp5/cells_sim.v"
;;
ecp5_abc9
)
yosys
-ql
synthlog.txt
-p
"synth_ecp5 -abc9 -top
$TOP
; write_verilog synth.v"
$rtl_files
iverilog_cmd
=
"
$iverilog_cmd
synth.v
$TECHLIBS_PREFIX
/ecp5/cells_sim.v"
;;
xilinx
)
yosys
-ql
synthlog.txt
-p
"synth_xilinx -top
$TOP
; write_verilog synth.v"
$rtl_files
iverilog_cmd
=
"
$iverilog_cmd
synth.v
$TECHLIBS_PREFIX
/xilinx/cells_sim.v"
;;
xilinx_abc9
)
yosys
-ql
synthlog.txt
-p
"synth_xilinx -abc9 -top
$TOP
; write_verilog synth.v"
$rtl_files
iverilog_cmd
=
"
$iverilog_cmd
synth.v
$TECHLIBS_PREFIX
/xilinx/cells_sim.v"
;;
*
)
exit
1
;;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment