3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-05-18 21:15:33 +00:00

New example_synth code

`example_synth.rst` updated down to coarse-grain representation.
This commit is contained in:
Krystine Sherwin 2023-12-14 16:21:52 +13:00
parent 6d1caf6134
commit 80c78aaad6
No known key found for this signature in database
5 changed files with 388 additions and 73 deletions

View file

@ -0,0 +1,15 @@
PROGRAM_PREFIX :=
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
DOTS = control_hier.dot control_proc.dot
DOTS += example_hier.dot
dots: $(DOTS) example.out
$(DOTS) example.out: example.v example.ys
$(YOSYS) example.ys -l example.out -Q
.PHONY: clean
clean:
rm -f *.dot