aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/examples
diff options
context:
space:
mode:
Diffstat (limited to 'fpga_interchange/examples')
-rw-r--r--fpga_interchange/examples/tests/lutram/lutram.v4
1 files changed, 3 insertions, 1 deletions
diff --git a/fpga_interchange/examples/tests/lutram/lutram.v b/fpga_interchange/examples/tests/lutram/lutram.v
index be5728f8..f38197d4 100644
--- a/fpga_interchange/examples/tests/lutram/lutram.v
+++ b/fpga_interchange/examples/tests/lutram/lutram.v
@@ -7,7 +7,9 @@ module top (
input wire [15:0] sw,
output wire [15:0] led
);
- RAM128X1D ram_i (
+ RAM128X1D #(
+ .INIT(128'hFFEEDDCCBBAA99887766554433221100)
+ ) ram_i (
.WCLK(clk),
.A(sw[6:0]),
.DPRA(sw[13:7]),