Single-Port Block RAM with Resettable Data Output (Verilog) - Single-Port Block RAM with Resettable Data Output (Verilog) - 2022.2 English - UG901

Vivado Design Suite User Guide: Synthesis (UG901)

Document ID
UG901
Release Date
2022-11-16
Version
2022.2 English

Filename: rams_sp_rf_rst.v

// Block RAM with Resettable Data Output

// File: rams_sp_rf_rst.v

module rams_sp_rf_rst (clk, en, we, rst, addr, di, dout);

input clk;

input en;

input we;

input rst;

input [9:0] addr;

input [15:0] di;

output [15:0] dout;

reg [15:0] ram [1023:0];

reg [15:0] dout;

always @(posedge clk)

begin

if (en) //optional enable

begin

if (we) //write enable

ram[addr] <= di;

if (rst) //optional reset

dout <= 0;

else

dout <= ram[addr];

end

end

endmodule