git-svn-id: http://moon:8086/svn/vhdl/trunk@1112 cc03376c-175c-47c8-b038-4cd826a8556b
39 lines
967 B
Plaintext
39 lines
967 B
Plaintext
## NOTE: Do not edit this file.
|
|
##
|
|
|
|
if {[file exists work]} {vdel -lib work -all}
|
|
|
|
vlib work
|
|
|
|
# UART
|
|
vcom -explicit -93 "../../../uart/uart_rx_sim.vhd"
|
|
vcom -explicit -93 "../../../uart/uart_tx_sim.vhd"
|
|
vcom -explicit -93 "../../../uart/uart_wb.vhd"
|
|
|
|
# GPIO
|
|
vcom -explicit -93 "../../../misc/gpio_wb.vhd"
|
|
|
|
# Async port
|
|
vcom -explicit -93 "../../../misc/async_types.vhd"
|
|
vcom -explicit -93 "../../../misc/async_port_wb.vhd"
|
|
vcom -explicit -93 "../src/async_defs.vhd"
|
|
|
|
# ROM
|
|
vcom -explicit -93 "../src/bootloader_flash.ROM.vhd"
|
|
vcom -explicit -93 "../../../misc/rom_wb.vhd"
|
|
|
|
# MIPS
|
|
|
|
vcom -explicit -93 "../src/core/mips_types.vhd"
|
|
vcom -explicit -93 "../src/core/mips_instr.vhd"
|
|
vcom -explicit -93 "../syn/ise101/netgen/synthesis/mips_top_synthesis.vhd"
|
|
vcom -explicit -93 "../src/mips_top_syn.vhd"
|
|
|
|
vcom -explicit -93 "../src/tb_mips_top.vhd"
|
|
vsim -t 1ps -lib work tb_mips_top
|
|
do {tb_mips_top_syn.wdo}
|
|
view wave
|
|
view structure
|
|
view signals
|
|
run 1500us
|