Add multi master sys bus

This commit is contained in:
Paul Mathieu
2021-03-06 16:36:57 -08:00
parent ea52764fc4
commit 9e61fd9456
3 changed files with 456 additions and 0 deletions

18
sysbus/makefile Normal file
View File

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