3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 09:34:09 +00:00
yosys/tests/simple/mem2reg_bounds_tern.v
Zachary Snow c79fbfe0a1 mem2reg: tolerate out of bounds constant accesses
This brings the mem2reg behavior in line with the nomem2reg behavior.
2021-06-08 15:02:57 -04:00

20 lines
398 B
Verilog

module top(
input clk,
input wire [1:0] sel,
input wire [7:0] base,
output reg [7:0] line
);
reg [0:7] mem [0:2];
generate
genvar i;
for (i = 0; i < 4; i = i + 1) begin : gen
always @(posedge clk)
mem[i] <= i == 0 ? base : mem[i - 1] + 1;
end
endgenerate
always @(posedge clk)
line = mem[sel];
endmodule