From 041a3e8113900e65934187b6f7a190e73a6e3b28 Mon Sep 17 00:00:00 2001 From: yannickreiss Date: Thu, 5 Oct 2023 12:30:40 +0200 Subject: [PATCH] Removed simulation duration to save time. --- fpga/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fpga/Makefile b/fpga/Makefile index 17a28f5..fa960b5 100644 --- a/fpga/Makefile +++ b/fpga/Makefile @@ -1,6 +1,6 @@ CHDL = ghdl FLAGS = --std=08 -STOP = 900000ns +STOP = 90000ns all: tb/tb_bfpu.vhd src/bfpu.vhd $(CHDL) -a $(FLAGS) src/alu.vhd src/branch.vhd src/cellMemory.vhd src/instructionMemory.vhd src/memoryPointer.vhd src/programCounter.vhd src/bfpu.vhd tb/tb_bfpu.vhd