simulate.sh 499 B

123456789
  1. # Build script for assembly files for simulation in verilog (run from ROM)
  2. if (python3 Assembler.py bdos 0xC02522 > ../Verilog/memory/rom.list) # compile and write to verilog memory folder
  3. then
  4. iverilog -o /home/bart/Documents/FPGA/FPGC6/Verilog/output/output /home/bart/Documents/FPGA/FPGC6/Verilog/testbench/FPGC_tb.v
  5. vvp /home/bart/Documents/FPGA/FPGC6/Verilog/output/output
  6. else
  7. # print the error, which is in code.list
  8. (cat ../Verilog/memory/rom.list)
  9. fi