merging changes from OPAE branch making this branch

This commit is contained in:
Blaise Tine
2020-03-27 20:19:16 -04:00
parent 614797e52f
commit 5a5c9f3981
267 changed files with 498191 additions and 166 deletions

24
driver/hw/Makefile Normal file
View File

@@ -0,0 +1,24 @@
BUILD_DIR=build_sim
all: ase fpga
ase: build-setup
make -C $(BUILD_DIR)
fpga: build-setup
# TODO
build-setup: $(BUILD_DIR)/Makefile
$(BUILD_DIR)/Makefile:
afu_sim_setup --sources=sources.txt --platform discrete_pcie3 $(BUILD_DIR) -f
run-ase:
cd $(BUILD_DIR) && MENT_VSIM_OPT="-dpicpppath /usr/bin/gcc" make sim
run-fpga:
# TODO
clean:
rm -rf $(BUILD_DIR)