Skip to content

Commit b86ea5f

Browse files
jhkim-piiclaude
andcommitted
Fix unconnected w_mask_in on cce_inst_ram macro in bp_quad RTL
The fakeram45_256x48 instance in bsg_mem_1rw_sync_width_p48_els_p256 had its w_mask_in port left unconnected, causing ORD-2041 sanity check failure. Tie w_mask_in to 0 (active-low) to enable whole-word writes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Jaehyun Kim <jhkim@precisioninno.com>
1 parent 1face85 commit b86ea5f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

flow/designs/src/bp_quad/bsg_chip_block.sv2v.v

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241513,7 +241513,8 @@ module bsg_mem_1rw_sync_width_p48_els_p256
241513241513
.wd_in(data_i),
241514241514
.rd_out(data_o),
241515241515
.ce_in(_0_net_),
241516-
.we_in(_1_net_)
241516+
.we_in(_1_net_),
241517+
.w_mask_in({48{1'b0}})
241517241518
);
241518241519

241519241520
assign _1_net_ = ~w_i;

0 commit comments

Comments
 (0)