From 9837603ae12f7a7474b98a3fac37fbdcff4c17c6 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Sun, 21 Mar 2021 19:56:19 +0000 Subject: [PATCH] - fixed makefile - PCK_FIO is not needed git-svn-id: http://moon:8086/svn/vhdl/trunk@1441 cc03376c-175c-47c8-b038-4cd826a8556b --- lib/CPUs/MIPS/ghdl/Makefile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/lib/CPUs/MIPS/ghdl/Makefile b/lib/CPUs/MIPS/ghdl/Makefile index 960756d..ac512b8 100644 --- a/lib/CPUs/MIPS/ghdl/Makefile +++ b/lib/CPUs/MIPS/ghdl/Makefile @@ -1,9 +1,5 @@ -NAME ?= tb_mips_top - include ../src/core/mips.mk -#SRCS += ../../../PCK_FIO-2002.7/PCK_FIO_1993.vhd ../../../PCK_FIO-2002.7/PCK_FIO_1993_BODY.vhd - # RAMS SRCS += ../../../rams/dpram_2w2r2c_ra_sim.vhd SRCS += ../../../rams/dpram_1w1r2c_ra_sim.vhd @@ -39,11 +35,12 @@ SRCS += ../../../misc/rom_wb.vhd SRCS += $(MIPS_CORE_SRCS) # TB -SRCS += ../src/$(NAME).vhd +SRCS += ../src/tb_mips_top.vhd # Compile -ENTITY_RUN = $(NAME) -BUILD_DIR := build +TARGET := mips_top +ENTITY = tb_mips_top +RUN_TIME := 1500us WITH_VCD := y include ../../../../Common/make/ghdl.mk