Add basic project with cpu, ram and rom

This commit is contained in:
Byron Lathi
2024-03-02 22:46:48 -08:00
parent 0a0394ae33
commit 0752220b0e
15 changed files with 1019 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
SUPER6502_FPGA_SOURCES=$(shell cat sources.list)
SUPER6502_FPGA_BITSTREAM=outflow/super6502_fpga.hex
SUPER6502_FPGA_PROJECT=super6502_fpga.xml
all: $(SUPER6502_FPGA_BITSTREAM)
$(SUPER6502_FPGA_BITSTREAM): $(SUPER6502_FPGA_SOURCES) $(SUPER6502_FPGA_PROJECT)
efx_run.py $(SUPER6502_FPGA_PROJECT)
.PHONY: clean
clean:
rm -rf work_*
rm -rf outflow