aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ice40/rom.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ice40/rom.v')
-rw-r--r--tests/ice40/rom.v18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/ice40/rom.v b/tests/ice40/rom.v
deleted file mode 100644
index 0a0f41f37..000000000
--- a/tests/ice40/rom.v
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
-Example from: https://www.latticesemi.com/-/media/LatticeSemi/Documents/UserManuals/EI/iCEcube201701UserGuide.ashx?document_id=52071 [p. 74].
-*/
-module top(data, addr);
-output [3:0] data;
-input [4:0] addr;
-always @(addr) begin
-case (addr)
-0 : data = 'h4;
-1 : data = 'h9;
-2 : data = 'h1;
-15 : data = 'h8;
-16 : data = 'h1;
-17 : data = 'h0;
-default : data = 'h0;
-endcase
-end
-endmodule