You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
401 B

  1. DESIGN := risc_v
  2. DESIGN_SRC := risc_v_pkg.vhd risc_v.vhd
  3. TESTBENCH := tb_${DESIGN}
  4. .PHONY: sim
  5. sim: tb_${DESIGN}.ghw
  6. ${TESTBENCH}.ghw : ${DESIGN_SRC} ${TESTBENCH}.vhd
  7. ghdl -a --std=08 ${DESIGN_SRC} ${TESTBENCH}.vhd
  8. ghdl -e --std=08 ${TESTBENCH}
  9. ghdl -r --std=08 ${TESTBENCH} --vcd=${TESTBENCH}.vcd --wave=$@
  10. .PHONY: clean
  11. clean:
  12. rm ${TESTBENCH} ${TESTBENCH}.ghw ${TESTBENCH}.vcd work* *.o