3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-27 20:36:31 +00:00

Migrate build system to CMake

See #5895 for details.

This commit does not include CI or documentation changes.
This commit is contained in:
Catherine 2026-05-12 05:33:04 +00:00
parent 9d0cdb8551
commit 9b087b4aa7
207 changed files with 5202 additions and 2294 deletions

View file

@ -0,0 +1,40 @@
yosys_pass(efinix_fixcarry
efinix_fixcarry.cc
)
yosys_pass(synth_efinix
synth_efinix.cc
REQUIRES
abc
blackbox
check
clean
clkbufmap
deminout
dfflegalize
efinix_fixcarry
flatten
hierarchy
memory_libmap
memory_map
opt
opt_expr
proc
read_verilog
simplemap
stat
synth
techmap
tribuf
write_edif
write_json
DATA_DIR
efinix
DATA_FILES
cells_map.v
arith_map.v
cells_sim.v
brams_map.v
gbuf_map.v
brams.txt
)

View file

@ -1,10 +0,0 @@
OBJS += techlibs/efinix/synth_efinix.o
OBJS += techlibs/efinix/efinix_fixcarry.o
$(eval $(call add_share_file,share/efinix,techlibs/efinix/cells_map.v))
$(eval $(call add_share_file,share/efinix,techlibs/efinix/arith_map.v))
$(eval $(call add_share_file,share/efinix,techlibs/efinix/cells_sim.v))
$(eval $(call add_share_file,share/efinix,techlibs/efinix/brams_map.v))
$(eval $(call add_share_file,share/efinix,techlibs/efinix/gbuf_map.v))
$(eval $(call add_share_file,share/efinix,techlibs/efinix/brams.txt))