forked from abs-tudelft/fletcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstringread.tcl
More file actions
22 lines (18 loc) · 884 Bytes
/
Copy pathstringread.tcl
File metadata and controls
22 lines (18 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
source $::env(FLETCHER_HARDWARE_DIR)/test/fletcher.tcl
proc run_sim {} {
compile_sources
simulate work.sim_top {{"Testbench" sim:/sim_top/* }
{"Memory" sim:/sim_top/rmem_inst/*}
{"Wrapper" sim:/sim_top/test_wrapper_inst/*}
{"UserCore" sim:/sim_top/test_wrapper_inst/test_inst/*}
{"ColumnReader" sim:/sim_top/test_wrapper_inst/Name_read_inst/*}
{"Offsets buffer" sim:/sim_top/test_wrapper_inst/Name_read_inst/arb_inst/a_inst/listprim_gen/list_inst/a_inst/*}
{"Values buffer" sim:/sim_top/test_wrapper_inst/Name_read_inst/arb_inst/a_inst/listprim_gen/list_inst/b_inst/*}
}
}
add_fletcher
add_fletcher_tb
add_source test.vhd
add_source test_wrapper.vhd
add_source sim_top.vhd
run_sim