mirror of https://github.com/YosysHQ/yosys.git
Organizing Speedster file names
This commit is contained in:
parent
adf1754729
commit
1fc061d90c
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
OBJS += techlibs/achronix/synth_speedster.o
|
OBJS += techlibs/achronix/synth_speedster.o
|
||||||
|
|
||||||
$(eval $(call add_share_file,share/achronix/speedster22i/,techlibs/achronix/speedster22i/cells_comb_speedster.v))
|
$(eval $(call add_share_file,share/achronix/speedster22i/,techlibs/achronix/speedster22i/cells_sim.v))
|
||||||
$(eval $(call add_share_file,share/achronix/speedster22i/,techlibs/achronix/speedster22i/cells_map_speedster.v))
|
$(eval $(call add_share_file,share/achronix/speedster22i/,techlibs/achronix/speedster22i/cells_map.v))
|
||||||
|
|
||||||
|
|
|
@ -122,7 +122,7 @@ struct SynthIntelPass : public ScriptPass {
|
||||||
{
|
{
|
||||||
if (check_label("begin"))
|
if (check_label("begin"))
|
||||||
{
|
{
|
||||||
run("read_verilog -sv -lib +/achronix/speedster22i/cells_comb_speedster.v");
|
run("read_verilog -sv -lib +/achronix/speedster22i/cells_sim.v");
|
||||||
run(stringf("hierarchy -check %s", help_mode ? "-top <top>" : top_opt.c_str()));
|
run(stringf("hierarchy -check %s", help_mode ? "-top <top>" : top_opt.c_str()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -164,7 +164,7 @@ struct SynthIntelPass : public ScriptPass {
|
||||||
if (check_label("map_cells"))
|
if (check_label("map_cells"))
|
||||||
{
|
{
|
||||||
run("iopadmap -bits -outpad $__outpad I:O -inpad $__inpad O:I");
|
run("iopadmap -bits -outpad $__outpad I:O -inpad $__inpad O:I");
|
||||||
run("techmap -map +/achronix/speedster22i/cells_map_speedster.v");
|
run("techmap -map +/achronix/speedster22i/cells_map.v");
|
||||||
run("dffinit -ff dffeas Q INIT");
|
run("dffinit -ff dffeas Q INIT");
|
||||||
run("clean -purge");
|
run("clean -purge");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue