aboutsummaryrefslogtreecommitdiffstats
path: root/tests/memories/trans_sdp.v
blob: b89f2ccf02fa904f1c4a31771675bfbc9f3cddd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// expect-wr-ports 1
// expect-rd-ports 1
// expect-rd-clk \clk
// expect-rd-en \re

module top(input clk, we, re, input [7:0] ra, wa, wd, output reg [7:0] rd);

reg [7:0] mem[0:255];

always @(posedge clk) begin
	if (we)
		mem[wa] <= wd;

	if (re) begin
		rd <= mem[ra];
		if (we && ra == wa)
			rd <= wd;
	end
end

endmodule