- PCK_FIO is not needed git-svn-id: http://moon:8086/svn/vhdl/trunk@1441 cc03376c-175c-47c8-b038-4cd826a8556b
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
include ../src/core/mips.mk
|
|
|
|
# RAMS
|
|
SRCS += ../../../rams/dpram_2w2r2c_ra_sim.vhd
|
|
SRCS += ../../../rams/dpram_1w1r2c_ra_sim.vhd
|
|
|
|
# FIFOS
|
|
SRCS += ../../../FIFO/src/fifo_ctrl_pkg.vhd
|
|
SRCS += ../../../FIFO/src/gray_counter.vhd
|
|
SRCS += ../../../FIFO/src/fifo_sync_ctrl.vhd
|
|
SRCS += ../../../FIFO/src/fifo_sync.vhd
|
|
SRCS += ../../../FIFO/src/fifo_async_ctrl.vhd
|
|
SRCS += ../../../FIFO/src/fifo_async.vhd
|
|
|
|
# UART
|
|
SRCS += ../../../uart/uart_types.vhd
|
|
SRCS += ../../../uart/uart_sim.vhd
|
|
SRCS += ../../../uart/uart_wb.vhd
|
|
|
|
# GPIO
|
|
SRCS += ../../../misc/gpio_wb.vhd
|
|
|
|
# Async port
|
|
SRCS += ../../../misc/async_types.vhd
|
|
SRCS += ../../../misc/async_port_wb.vhd
|
|
SRCS += ../src/async_defs.vhd
|
|
|
|
# ROM
|
|
#SRCS += Z:/work/repos/mips/src/bootloader/build/ml402/eb/bootloader.elf.ROM.vhd
|
|
#SRCS += Z:/work/repos/mips/src/bootloader/build/denano/eb/bootloader.elf.ROM.vhd
|
|
SRCS += ../src/bootloader_flash.ROM.vhd
|
|
SRCS += ../../../misc/rom_wb.vhd
|
|
|
|
# MIPS
|
|
SRCS += $(MIPS_CORE_SRCS)
|
|
|
|
# TB
|
|
SRCS += ../src/tb_mips_top.vhd
|
|
|
|
# Compile
|
|
TARGET := mips_top
|
|
ENTITY = tb_mips_top
|
|
RUN_TIME := 1500us
|
|
WITH_VCD := y
|
|
|
|
include ../../../../Common/make/ghdl.mk
|
|
|