update lut_ram to build on icestick. doesn't work on hardware yet, but doesn't break xilinx builds, so we're rolling with it
This commit is contained in:
parent
4951ab7e5f
commit
f5bf1c6954
|
|
@ -22,7 +22,7 @@ module lut_ram(
|
|||
parameter DEPTH = 8;
|
||||
parameter BASE_ADDR = 0;
|
||||
parameter READ_ONLY = 0;
|
||||
reg [DEPTH-1:0][15:0] mem;
|
||||
reg [DEPTH-1:0] mem [15:0];
|
||||
|
||||
always @(posedge clk) begin
|
||||
addr_o <= addr_i;
|
||||
|
|
|
|||
Loading…
Reference in New Issue