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:
Fischer Moseley 2023-04-04 00:03:13 -04:00
parent 4951ab7e5f
commit f5bf1c6954
1 changed files with 1 additions and 1 deletions

View File

@ -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;