From 73d1db32c7b1cbc6dfcc4d0af148d543e95ce9d5 Mon Sep 17 00:00:00 2001 From: yannickreiss Date: Thu, 5 Oct 2023 11:01:12 +0200 Subject: [PATCH] Change duration of testbench --- fpga/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fpga/Makefile b/fpga/Makefile index 7f5df71..17a28f5 100644 --- a/fpga/Makefile +++ b/fpga/Makefile @@ -1,6 +1,6 @@ CHDL = ghdl FLAGS = --std=08 -STOP = 9000ns +STOP = 900000ns 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