summaryrefslogtreecommitdiff
path: root/tests/simple/arrays01.v
blob: bd0eda29425df3d5ebeafda1e0ab58e69d2897d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module uut_arrays01(clock, we, addr, wr_data, rd_data);

input clock, we;
input [3:0] addr, wr_data;
output [3:0] rd_data;
reg [3:0] rd_data;

reg [3:0] memory [15:0];

always @(posedge clock) begin
	if (we)
		memory[addr] <= wr_data;
	rd_data <= memory[addr];
end

endmodule