1
0
mirror of https://github.com/myhdl/myhdl.git synced 2024-12-14 07:44:38 +08:00
myhdl/example/manual/ram_1.v
2010-10-09 11:35:58 +02:00

41 lines
440 B
Verilog

// File: ram_1.v
// Generated by MyHDL 0.7dev
// Date: Fri Oct 8 21:53:32 2010
`timescale 1ns/10ps
module ram_1 (
dout,
din,
addr,
we,
clk
);
// Ram model
output [7:0] dout;
wire [7:0] dout;
input [7:0] din;
input [6:0] addr;
input we;
input clk;
reg [7:0] mem [0:128-1];
always @(posedge clk) begin: RAM_1_WRITE
if (we) begin
mem[addr] <= din;
end
end
assign dout = mem[addr];
endmodule