aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/fabulous/custom_map.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/arch/fabulous/custom_map.v')
-rw-r--r--tests/arch/fabulous/custom_map.v3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/arch/fabulous/custom_map.v b/tests/arch/fabulous/custom_map.v
new file mode 100644
index 000000000..1538e837b
--- /dev/null
+++ b/tests/arch/fabulous/custom_map.v
@@ -0,0 +1,3 @@
+module AND(input [7:0] A, B, output [7:0] Y);
+ ALU #(.MODE("AND")) _TECHMAP_REPLACE_ (.A(A), .B(B), .Y(Y));
+endmodule