aboutsummaryrefslogtreecommitdiffstats
path: root/icefuzz/tests/intosc.v
diff options
context:
space:
mode:
Diffstat (limited to 'icefuzz/tests/intosc.v')
-rw-r--r--icefuzz/tests/intosc.v14
1 files changed, 14 insertions, 0 deletions
diff --git a/icefuzz/tests/intosc.v b/icefuzz/tests/intosc.v
new file mode 100644
index 0000000..227cb55
--- /dev/null
+++ b/icefuzz/tests/intosc.v
@@ -0,0 +1,14 @@
+module top (
+ input clkhfpu,
+ input clkhfen,
+ output clkhf
+);
+SB_HFOSC #(
+
+ .CLKHF_DIV("0b10")
+) hfosc (
+ .CLKHFPU(clkhfpu),
+ .CLKHFEN(clkhfen),
+ .CLKHF(clkhf)
+);
+endmodule