99init :
1010 git submodule update --init --recursive
1111 $(MAKE ) -C ./dut/CoupledL2 init
12+ $(MAKE ) -C ./dut/OpenLLC init
1213
1314FORCE :
1415
@@ -38,15 +39,15 @@ tltest-prepare-v3-coupledL2:
3839
3940tltest-prepare-all-openLLC :
4041 cmake ./main -B ./main/build -DBUILD_DPI=ON -DBUILD_V3=ON $(CMAKE_CXX_COMPILER ) \
41- -DDUT_PATH=" ${PWD} /dut/CoupledL2 "
42+ -DDUT_PATH=" ${PWD} /dut/OpenLLC "
4243
4344tltest-prepare-dpi-openLLC :
4445 cmake ./main -B ./main/build -DBUILD_DPI=ON -DBUILD_V3=OFF $(CMAKE_CXX_COMPILER ) \
45- -DDUT_PATH=" ${PWD} /dut/CoupledL2 "
46+ -DDUT_PATH=" ${PWD} /dut/OpenLLC "
4647
4748tltest-prepare-v3-openLLC :
4849 cmake ./main -B ./main/build -DBUILD_V3=ON -DBUILD_DPI=OFF $(CMAKE_CXX_COMPILER ) \
49- -DDUT_PATH=" ${PWD} /dut/CoupledL2 "
50+ -DDUT_PATH=" ${PWD} /dut/OpenLLC "
5051
5152
5253tltest-portgen :
@@ -106,40 +107,40 @@ tltest-build-v3-openLLC: tltest-prepare-v3-openLLC tltest-build
106107
107108
108109coupledL2-compile :
109- $(MAKE ) -C ./dut/CoupledL2 compile-coupledl2
110+ $(MAKE ) -C ./dut/CoupledL2 compile
110111
111112coupledL2-verilog-test-top-l2l3 :
112- $(MAKE ) -C ./dut/CoupledL2 test-top-l2l3-huancun
113+ $(MAKE ) -C ./dut/CoupledL2 test-top-l2l3
113114
114115coupledL2-verilog-test-top-l2l3l2 :
115- $(MAKE ) -C ./dut/CoupledL2 test-top-l2l3l2-huancun
116+ $(MAKE ) -C ./dut/CoupledL2 test-top-l2l3l2
116117
117118coupledL2-verilog-clean :
118119 $(MAKE ) -C ./dut/CoupledL2 clean
119120
120121openLLC-compile :
121- $(MAKE ) -C ./dut/CoupledL2 compile-openllc
122+ $(MAKE ) -C ./dut/OpenLLC compile
122123
123124openLLC-verilog-test-top-l2l3 :
124- $(MAKE ) -C ./dut/CoupledL2 test-top-l2l3-openllc
125+ $(MAKE ) -C ./dut/OpenLLC test-top-l2l3
125126
126127openLLC-verilog-test-top-l2l3l2 :
127- $(MAKE ) -C ./dut/CoupledL2 test-top-l2l3l2-openllc
128+ $(MAKE ) -C ./dut/OpenLLC test-top-l2l3l2
128129
129130openLLC-verilog-clean :
130- $(MAKE ) -C ./dut/CoupledL2 clean
131+ $(MAKE ) -C ./dut/OpenLLC clean
131132
132133
133134VERILATOR := verilator
134- VERILATOR_COMMON_ARGS_COUPLEDL2 := ./dut/CoupledL2/build/coupledl2/ *.*v \
135+ VERILATOR_COMMON_ARGS_COUPLEDL2 := ./dut/CoupledL2/build/*.*v \
135136 --Mdir ./verilated \
136137 -O3 \
137138 --trace-fst \
138139 --top TestTop \
139140 --build-jobs $(THREADS_BUILD ) --verilate-jobs $(THREADS_BUILD ) \
140141 -DSIM_TOP_MODULE_NAME=TestTop \
141142 -Wno-fatal
142- VERILATOR_COMMON_ARGS_OPENLLC := ./dut/CoupledL2 /build/openllc /*.*v \
143+ VERILATOR_COMMON_ARGS_OPENLLC := ./dut/OpenLLC /build/*.*v \
143144 --Mdir ./verilated \
144145 -O3 \
145146 --trace-fst \
@@ -161,7 +162,7 @@ coupledL2-verilate-build:
161162coupledL2-verilate :
162163 rm -rf verilated
163164 mkdir verilated
164- verilator --trace-fst --cc --build --lib-create vltdut --Mdir ./verilated ./dut/CoupledL2/build/coupledl2/ * .* v -Wno-fatal \
165+ verilator --trace-fst --cc --build --lib-create vltdut --Mdir ./verilated ./dut/CoupledL2/build/* .* v -Wno-fatal \
165166 --top TestTop --build-jobs $(THREADS_BUILD ) --verilate-jobs $(THREADS_BUILD ) -DSIM_TOP_MODULE_NAME=TestTop
166167
167168coupledL2-verilate-clean :
@@ -180,7 +181,7 @@ openLLC-verilate-build:
180181openLLC-verilate :
181182 rm -rf verilated
182183 mkdir verilated
183- verilator --trace-fst --cc --build --lib-create vltdut --Mdir ./verilated ./dut/CoupledL2 /build/openllc /* .* v -Wno-fatal \
184+ verilator --trace-fst --cc --build --lib-create vltdut --Mdir ./verilated ./dut/OpenLLC /build/* .* v -Wno-fatal \
184185 --top TestTop --build-jobs $(THREADS_BUILD ) --verilate-jobs $(THREADS_BUILD ) -DSIM_TOP_MODULE_NAME=TestTop
185186
186187openLLC-verilate-clean :
0 commit comments