mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-29 14:30:08 +00:00
71 lines
2.1 KiB
Verilog
71 lines
2.1 KiB
Verilog
// ByteWide Write Enable, - Alternate READ_FIRST mode template - Vivado recomended
|
|
// bytewrite_tdp_ram_readfirst2.v
|
|
module bytewrite_tdp_ram_readfirst2
|
|
#(
|
|
//-------------------------------------------------------------------------
|
|
parameter NUM_COL = 4,
|
|
parameter COL_WIDTH = 8,
|
|
parameter ADDR_WIDTH = 10, // Addr Width in bits : 2**ADDR_WIDTH = RAM Depth
|
|
parameter DATA_WIDTH = NUM_COL*COL_WIDTH // Data Width in bits
|
|
//-------------------------------------------------------------------------
|
|
) (
|
|
input clkA,
|
|
input enaA,
|
|
input [NUM_COL-1:0] weA,
|
|
input [ADDR_WIDTH-1:0] addrA,
|
|
input [DATA_WIDTH-1:0] dinA,
|
|
output reg [DATA_WIDTH-1:0] doutA,
|
|
|
|
input clkB,
|
|
input enaB,
|
|
input [NUM_COL-1:0] weB,
|
|
input [ADDR_WIDTH-1:0] addrB,
|
|
input [DATA_WIDTH-1:0] dinB,
|
|
output reg [DATA_WIDTH-1:0] doutB
|
|
);
|
|
|
|
|
|
// Core Memory
|
|
reg [DATA_WIDTH-1:0] ram_block [(2**ADDR_WIDTH)-1:0];
|
|
|
|
// Port-A Operation
|
|
generate
|
|
genvar i;
|
|
for(i=0;i<NUM_COL;i=i+1) begin
|
|
always @ (posedge clkA) begin
|
|
if(enaA) begin
|
|
if(weA[i]) begin
|
|
ram_block[addrA][i*COL_WIDTH +: COL_WIDTH] <= dinA[i*COL_WIDTH +: COL_WIDTH];
|
|
end
|
|
end
|
|
end
|
|
end
|
|
endgenerate
|
|
|
|
always @ (posedge clkA) begin
|
|
if(enaA) begin
|
|
doutA <= ram_block[addrA];
|
|
end
|
|
end
|
|
|
|
|
|
// Port-B Operation:
|
|
generate
|
|
for(i=0;i<NUM_COL;i=i+1) begin
|
|
always @ (posedge clkB) begin
|
|
if(enaB) begin
|
|
if(weB[i]) begin
|
|
ram_block[addrB][i*COL_WIDTH +: COL_WIDTH] <= dinB[i*COL_WIDTH +: COL_WIDTH];
|
|
end
|
|
end
|
|
end
|
|
end
|
|
endgenerate
|
|
|
|
always @ (posedge clkB) begin
|
|
if(enaB) begin
|
|
doutB <= ram_block[addrB];
|
|
end
|
|
end
|
|
|
|
endmodule // bytewrite_tdp_ram_readfirst2
|