File tree Expand file tree Collapse file tree 2 files changed +15
-10
lines changed
Expand file tree Collapse file tree 2 files changed +15
-10
lines changed Original file line number Diff line number Diff line change @@ -4,18 +4,25 @@ package:
44 -
" Francesco Conti <[email protected] >" 55
66dependencies :
7- tech_cells_generic : { git: "git@ github.com: pulp-platform/tech_cells_generic.git", version: 0.1.6 }
7+ tech_cells_generic : { git: "https:// github.com/ pulp-platform/tech_cells_generic.git", version: 0.2.2 }
88
99sources :
1010 - include_dirs :
1111 - rtl
1212 files :
13- - rtl/hwpe_ctrl_package.sv
13+ # Source files grouped in levels. Files in level 0 have no dependencies on files in this
14+ # package. Files in level 1 only depend on files in level 0, files in level 2 on files in
15+ # levels 1 and 0, etc. Files within a level are ordered alphabetically.
16+ # Level 0
1417 - rtl/hwpe_ctrl_interfaces.sv
15- - rtl/hwpe_ctrl_regfile.sv
18+ - rtl/hwpe_ctrl_package.sv
19+ # Level 1
1620 - rtl/hwpe_ctrl_regfile_latch.sv
17- - rtl/hwpe_ctrl_regfile_latch_test_wrap.sv
18- - rtl/hwpe_ctrl_slave.sv
1921 - rtl/hwpe_ctrl_seq_mult.sv
2022 - rtl/hwpe_ctrl_uloop.sv
21-
23+ # Level 2
24+ - rtl/hwpe_ctrl_regfile_latch_test_wrap.sv
25+ # Level 3
26+ - rtl/hwpe_ctrl_regfile.sv
27+ # Level 4
28+ - rtl/hwpe_ctrl_slave.sv
Original file line number Diff line number Diff line change @@ -62,8 +62,7 @@ module hwpe_ctrl_regfile_latch
6262 genvar x;
6363 genvar y;
6464
65- cluster_clock_gating CG_WE_GLOBAL
66- (
65+ tc_clk_gating CG_WE_GLOBAL (
6766 .clk_o ( clk_int ),
6867 .en_i ( WriteEnable | clear ),
6968 .test_en_i ( 1'b0 ),
@@ -119,8 +118,7 @@ module hwpe_ctrl_regfile_latch
119118 begin : CG_CELL_WORD_ITER
120119 for (y= 0 ; y< NUM_BYTE ; y++ )
121120 begin : CG_CELL_BYTE_ITER
122- cluster_clock_gating CG_Inst
123- (
121+ tc_clk_gating CG_Inst (
124122 .clk_o (ClocksxC[x][y]),
125123 .en_i (WAddrOneHotxD[x][y]),
126124 .test_en_i (1'b0 ),
You can’t perform that action at this time.
0 commit comments