mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-14 04:48:46 +00:00
Split hardware mapping from `fifo.ys` into `fifo_map.ys`. Reduces size of `fifo.out` log and allows separate yosys calls in the makefile. Some tidy up and minor changes in `fifo.ys` for better discussion. Filled out note on `clean` (changed from `opt_clean`) and introduced `;;`. Highlighted `$memrd` and added a paragraph about it. More detail on the flatten and merging of `fifo_reader` block. Brief discussion on the changes from `$memrd` to `$memrd_v2`.
24 lines
609 B
Makefile
24 lines
609 B
Makefile
PROGRAM_PREFIX :=
|
|
|
|
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
|
|
|
|
DOT_NAMES = addr_gen_hier addr_gen_proc addr_gen_clean
|
|
DOT_NAMES += rdata_proc rdata_flat rdata_adffe rdata_memrdv2 rdata_alumacc rdata_coarse
|
|
MAPDOT_NAMES = rdata_map_ram rdata_map_ffram rdata_map_gates
|
|
MAPDOT_NAMES += rdata_map_ffs rdata_map_luts rdata_map_cells
|
|
|
|
DOTS := $(addsuffix .dot,$(DOT_NAMES))
|
|
MAPDOTS := $(addsuffix .dot,$(MAPDOT_NAMES))
|
|
|
|
dots: $(DOTS) $(MAPDOTS) fifo.out
|
|
|
|
$(DOTS) fifo.out: fifo.v fifo.ys
|
|
$(YOSYS) fifo.ys -l fifo.out -Q -T
|
|
|
|
$(MAPDOTS): fifo.v fifo_map.ys
|
|
$(YOSYS) fifo_map.ys
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f *.dot
|