summaryrefslogtreecommitdiff
path: root/tests/lut/map_and.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lut/map_and.v')
-rw-r--r--tests/lut/map_and.v5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/lut/map_and.v b/tests/lut/map_and.v
new file mode 100644
index 00000000..68ae33fd
--- /dev/null
+++ b/tests/lut/map_and.v
@@ -0,0 +1,5 @@
+module top(...);
+ input a, b;
+ output y;
+ assign y = a&b;
+endmodule