From 05e69153698fe0af0a8c6b21205318cfe0227e2c Mon Sep 17 00:00:00 2001 From: gatecat Date: Sat, 21 Feb 2026 19:19:28 +0100 Subject: [PATCH] xilinx: Fix RAM256X1S packing Signed-off-by: gatecat --- himbaechel/uarch/xilinx/pack_dram.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/himbaechel/uarch/xilinx/pack_dram.cc b/himbaechel/uarch/xilinx/pack_dram.cc index ec3df753..06608cd0 100644 --- a/himbaechel/uarch/xilinx/pack_dram.cc +++ b/himbaechel/uarch/xilinx/pack_dram.cc @@ -461,7 +461,7 @@ void XilinxPacker::pack_dram() z--; } // Decode mux tree using MUXF[78] - create_muxf_tree(base, "O", o_pre, addressw_high, o, m256 ? 4 : 2); + create_muxf_tree(base, "O", o_pre, addressw_high, o, m256 ? 0 : 2); packed_cells.insert(ci->name); } }