Skip to content

Commit

Permalink
Merge pull request #348 from antmicro/pcza/eos-s3-use-f4pga-build
Browse files Browse the repository at this point in the history
eos-s3: btn_counter: use F4PGA build flow by default
  • Loading branch information
kgugala authored Aug 1, 2022
2 parents 17ccd04 + 4001679 commit 524dfb6
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
5 changes: 5 additions & 0 deletions eos-s3/btn_counter/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,10 @@ DEVICE := ql-eos-s3
PARTNAME := PD64
PCF:=chandalar.pcf

ifdef F4PGA_USE_DEPRECATED
all:
ql_symbiflow -compile -d ${DEVICE} -P ${PARTNAME} -v ${VERILOG} -t ${TOP} -p ${PCF}
else
all:
f4pga -vvv build --flow ./flow.json
endif
26 changes: 26 additions & 0 deletions eos-s3/btn_counter/flow.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"default_part": "EOS3FF512-PDN64",
"values": {
"top": "top"
},
"dependencies": {
"sources": [
"./btn_counter.v"
],
"synth_log": "synth.log",
"pack_log": "pack.log",
"analysis_log": "analysis.log"
},
"EOS3FF512-PDN64": {
"default_target": "bitstream",
"dependencies": {
"build_dir": "build",
"pcf": "./chandalar.pcf",
"sdc-in": "./dummy.sdc"
},
"values": {
"part": "ql-eos-s3",
"package": "PD64"
}
}
}

0 comments on commit 524dfb6

Please sign in to comment.