aboutsummaryrefslogtreecommitdiffstats
path: root/icefuzz/tests/carry.v
diff options
context:
space:
mode:
Diffstat (limited to 'icefuzz/tests/carry.v')
-rw-r--r--icefuzz/tests/carry.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/icefuzz/tests/carry.v b/icefuzz/tests/carry.v
new file mode 100644
index 0000000..42aae86
--- /dev/null
+++ b/icefuzz/tests/carry.v
@@ -0,0 +1,8 @@
+module top (input a, b, ci, output co);
+ SB_CARRY carry_cell (
+ .I0(a),
+ .I1(b),
+ .CI(ci),
+ .CO(co)
+ );
+endmodule