summaryrefslogtreecommitdiff
path: root/rtl
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2024-05-12 13:27:59 -0600
committerAlejandro Soto <alejandro@34project.org>2024-05-12 18:13:02 -0600
commite581090bb9e7965c463be35544395406f5a5441d (patch)
treeac3034e3fb81af50a3178ab8634a7a41cfc56717 /rtl
parentb9f1829b68530dbcabfec66835aea136d385e50e (diff)
platform/wavelet3d: enable FPU, JTAG in host CPU
Diffstat (limited to 'rtl')
-rw-r--r--rtl/if_common/if_tap.sv23
1 files changed, 23 insertions, 0 deletions
diff --git a/rtl/if_common/if_tap.sv b/rtl/if_common/if_tap.sv
new file mode 100644
index 0000000..3a4d5cc
--- /dev/null
+++ b/rtl/if_common/if_tap.sv
@@ -0,0 +1,23 @@
+interface if_tap;
+
+ logic tck, tms, tdi, tdo;
+
+ modport m
+ (
+ input tdo,
+
+ output tck,
+ tms,
+ tdi
+ );
+
+ modport s
+ (
+ input tck,
+ tms,
+ tdi,
+
+ output tdo
+ );
+
+endinterface