3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-29 15:37:59 +00:00

Add opt_mem_widen pass.

If all of us are wide, then none of us are!
This commit is contained in:
Marcelina Kościelnicka 2021-08-13 00:43:15 +02:00
parent 1f74ec3535
commit f791328506
4 changed files with 146 additions and 0 deletions

36
tests/memories/wide_all.v Normal file
View file

@ -0,0 +1,36 @@
// expect-wr-ports 2
// expect-rd-ports 1
// expect-wr-wide-continuation 2'10
module test(
input clk,
input [3:0] we,
input [6:0] ra,
input [5:0] wa,
input [31:0] wd,
output [15:0] rd
);
reg [7:0] mem[3:254];
assign rd[7:0] = mem[{ra, 1'b0}];
assign rd[15:0] = mem[{ra, 1'b1}];
initial begin
mem[5] = 8'h12;
mem[6] = 8'h34;
mem[7] = 8'h56;
end
always @(posedge clk) begin
if (we[0])
mem[{wa, 2'b00}] <= wd[7:0];
if (we[1])
mem[{wa, 2'b01}] <= wd[15:8];
if (we[2])
mem[{wa, 2'b10}] <= wd[23:16];
if (we[3])
mem[{wa, 2'b11}] <= wd[31:24];
end
endmodule