File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -281,8 +281,8 @@ module snitch import snitch_pkg::*; import riscv_instr::*; #(
281
281
dm :: dcsr_t dcsr_d, dcsr_q;
282
282
logic [31 : 0 ] dpc_d, dpc_q;
283
283
logic [31 : 0 ] dscratch_d, dscratch_q;
284
- logic debug_d, debug_q;
285
284
285
+ logic debug_d, debug_q;
286
286
// Multicast mask
287
287
logic [31 : 0 ] csr_mcast_d, csr_mcast_q;
288
288
Original file line number Diff line number Diff line change @@ -1151,7 +1151,8 @@ module snitch_cluster
1151
1151
user_t cluster_user;
1152
1152
// Atomic ID, needs to be unique ID of cluster
1153
1153
// cluster_id + HartIdOffset + 1 (because 0 is for non-atomic masters)
1154
- assign cluster_user = (core_to_axi_req.q.mask << AtomicIdWidth) | ((hart_base_id_i / NrCores) + (hart_base_id_i % NrCores) + 1'b1 );
1154
+ assign cluster_user = (core_to_axi_req.q.mask << AtomicIdWidth) |
1155
+ ((hart_base_id_i / NrCores) + (hart_base_id_i % NrCores) + 1'b1 );
1155
1156
1156
1157
reqrsp_mux # (
1157
1158
.NrPorts (NrCores),
You can’t perform that action at this time.
0 commit comments