Commit 76da1f3 1 parent 426af3d commit 76da1f3 Copy full SHA for 76da1f3
File tree 2 files changed +4
-8
lines changed
2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -389,8 +389,8 @@ void CacheTop::comb() {
389
389
vb_ctrl_bus = 0ull ;
390
390
vb_data_bus = 0ull ;
391
391
vb_queue_bus = 0ull ;
392
- ctrl_path_id = 0 ;
393
- data_path_id = 0 ;
392
+ ctrl_path_id = CTRL_PATH ;
393
+ data_path_id = DATA_PATH ;
394
394
v_queue_we = 0 ;
395
395
v_queue_re = 0 ;
396
396
v_req_mem_path_o = 0 ;
@@ -407,13 +407,11 @@ void CacheTop::comb() {
407
407
v_queue_re = i_req_mem_ready;
408
408
v_queue_we = (i.req_mem_valid || d.req_mem_valid );
409
409
410
- ctrl_path_id = CTRL_PATH;
411
410
vb_ctrl_bus = (ctrl_path_id,
412
411
i.req_mem_type ,
413
412
i.req_mem_size ,
414
413
i.req_mem_addr );
415
414
416
- data_path_id = DATA_PATH;
417
415
vb_data_bus = (data_path_id,
418
416
d.req_mem_type ,
419
417
d.req_mem_size ,
Original file line number Diff line number Diff line change @@ -266,8 +266,8 @@ begin: comb_proc
266
266
vb_ctrl_bus = 55'h00000000000000 ;
267
267
vb_data_bus = 55'h00000000000000 ;
268
268
vb_queue_bus = 55'h00000000000000 ;
269
- ctrl_path_id = 0 ;
270
- data_path_id = 0 ;
269
+ ctrl_path_id = CTRL_PATH ;
270
+ data_path_id = DATA_PATH ;
271
271
v_queue_we = 0 ;
272
272
v_queue_re = 0 ;
273
273
v_req_mem_path_o = 0 ;
@@ -284,13 +284,11 @@ begin: comb_proc
284
284
v_queue_re = i_req_mem_ready;
285
285
v_queue_we = (i.req_mem_valid || d.req_mem_valid);
286
286
287
- ctrl_path_id = CTRL_PATH ;
288
287
vb_ctrl_bus = { ctrl_path_id,
289
288
i.req_mem_type,
290
289
i.req_mem_size,
291
290
i.req_mem_addr} ;
292
291
293
- data_path_id = DATA_PATH ;
294
292
vb_data_bus = { data_path_id,
295
293
d.req_mem_type,
296
294
d.req_mem_size,
You can’t perform that action at this time.
0 commit comments