Merge pull request #348 from antmicro/pcza/eos-s3-use-f4pga-build
eos-s3: btn_counter: use F4PGA build flow by default
This commit is contained in:
commit
524dfb6e74
|
@ -6,5 +6,10 @@ DEVICE := ql-eos-s3
|
||||||
PARTNAME := PD64
|
PARTNAME := PD64
|
||||||
PCF:=chandalar.pcf
|
PCF:=chandalar.pcf
|
||||||
|
|
||||||
|
ifdef F4PGA_USE_DEPRECATED
|
||||||
all:
|
all:
|
||||||
ql_symbiflow -compile -d ${DEVICE} -P ${PARTNAME} -v ${VERILOG} -t ${TOP} -p ${PCF}
|
ql_symbiflow -compile -d ${DEVICE} -P ${PARTNAME} -v ${VERILOG} -t ${TOP} -p ${PCF}
|
||||||
|
else
|
||||||
|
all:
|
||||||
|
f4pga -vvv build --flow ./flow.json
|
||||||
|
endif
|
||||||
|
|
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue