diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-05-12 13:27:59 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-05-12 18:13:02 -0600 |
| commit | e581090bb9e7965c463be35544395406f5a5441d (patch) | |
| tree | ac3034e3fb81af50a3178ab8634a7a41cfc56717 /platform/wavelet3d/w3d_top.sv | |
| parent | b9f1829b68530dbcabfec66835aea136d385e50e (diff) | |
platform/wavelet3d: enable FPU, JTAG in host CPU
Diffstat (limited to '')
| -rw-r--r-- | platform/wavelet3d/w3d_top.sv | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/wavelet3d/w3d_top.sv b/platform/wavelet3d/w3d_top.sv index 818491f..0875ba2 100644 --- a/platform/wavelet3d/w3d_top.sv +++ b/platform/wavelet3d/w3d_top.sv @@ -42,6 +42,7 @@ import gfx::*; ); gfx_wb fpint_wb(); + if_tap host_jtag(); if_axib dram(), host_dbus(), host_ibus(); if_axil external_io(), gfx_ctrl(); if_pkts coverage(), geometry(); @@ -127,7 +128,8 @@ import gfx::*; .clk, .rst_n, .dbus(host_dbus.m), - .ibus(host_ibus.m) + .ibus(host_ibus.m), + .jtag(host_jtag.s) ); w3d_interconnect inter |
