mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-30 15:00:26 +00:00
Add tests for Xilinx UG901 examples
This commit is contained in:
parent
0d037bf9d8
commit
2ae7dec530
89 changed files with 2962 additions and 0 deletions
26
tests/xilinx_ug901/rams_sp_nc.v
Normal file
26
tests/xilinx_ug901/rams_sp_nc.v
Normal file
|
@ -0,0 +1,26 @@
|
|||
// Single-Port Block RAM No-Change Mode
|
||||
// File: rams_sp_nc.v
|
||||
|
||||
module rams_sp_nc (clk, we, en, addr, di, dout);
|
||||
|
||||
input clk;
|
||||
input we;
|
||||
input en;
|
||||
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)
|
||||
begin
|
||||
if (we)
|
||||
RAM[addr] <= di;
|
||||
else
|
||||
dout <= RAM[addr];
|
||||
end
|
||||
end
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue