Add pdmout module

This commit is contained in:
Paul Mathieu
2021-02-28 22:11:17 -08:00
parent 2f210dd561
commit ea52764fc4
3 changed files with 223 additions and 0 deletions

17
wave/makefile Normal file
View File

@@ -0,0 +1,17 @@
all: sim
sim: test.ghw
sim_sources = pdmout_test.vhdl
sources = pdmout.vhdl
test.ghw: work-obj93.cf
ghdl -r pdmout_test --wave=$@
work-obj93.cf: $(sim_sources) $(sources)
ghdl -a $^
PHONY: sim
.PRECIOUS: test.ghw