URL
https://opencores.org/ocsvn/qaz_libs/qaz_libs/trunk
Subversion Repositories qaz_libs
[/] [qaz_libs/] [trunk/] [basal/] [src/] [RAM/] [read_mixed_width_ram.sv] - Rev 34
Compare with Previous | Blame | View Log
moduleread_mixed_width_ram // 256x32 write and 1024x8 read(input [7:0] waddr,input [31:0] wdata,input we, clk,input [9:0] raddr,output logic [7:0] q);logic [3:0][7:0] ram[0:255];always_ff@(posedge clk)beginif(we)ram[waddr] <= wdata;q <= ram[raddr / 4][raddr % 4];endendmodule
