Skip to content

Commit

Permalink
Help synopsys-2020.09 with cluster_alias.
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-valente committed Aug 15, 2022
1 parent e7f21ff commit e2f7fb8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions rtl/xbar_pe_wrap.sv
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,13 @@ module xbar_pe_wrap
XBAR_TCDM_BUS.Slave mperiph_slave[NB_MPERIPHS-1:0]
);

logic cluster_alias;
`ifdef CLUSTER_ALIAS
logic cluster_alias=1'b1;
assign cluster_alias = 1'b1;
`else
logic cluster_alias=1'b0;
`endif
assign cluster_alias = 1'b0;
`endif

localparam int unsigned PE_XBAR_N_INPS = NB_CORES + NB_MPERIPHS;
localparam int unsigned PE_XBAR_N_OUPS = NB_SPERIPHS;
typedef logic [ADDR_WIDTH-1:0] pe_addr_t;
Expand Down

0 comments on commit e2f7fb8

Please sign in to comment.