diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-05-06 16:56:29 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-05-06 16:56:29 -0600 |
| commit | 492241990c66a8cc7e1ed464ab6e8a58df151054 (patch) | |
| tree | 32f33a084c811e8b527125ff236598bb855eeeef /platform/wavelet3d/w3d_top.sv | |
| parent | faea27c352b078410e4b2eed9063b6e5833f6af3 (diff) | |
platform/wavelet3d: add vexriscv host core
Diffstat (limited to '')
| -rw-r--r-- | platform/wavelet3d/w3d_top.sv | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/platform/wavelet3d/w3d_top.sv b/platform/wavelet3d/w3d_top.sv index a30745c..e20b10b 100644 --- a/platform/wavelet3d/w3d_top.sv +++ b/platform/wavelet3d/w3d_top.sv @@ -42,6 +42,7 @@ import gfx::*; ); gfx_wb fpint_wb(); + if_axib host_dbus(), host_ibus(); if_axil host_ctrl(); if_pkts coverage(), geometry(); gfx_regfile_io fpint_io(); @@ -111,4 +112,12 @@ import gfx::*; .host_ctrl(host_ctrl.s) ); + w3d_host host + ( + .clk, + .rst_n, + .dbus(host_dbus.m), + .ibus(host_ibus.m) + ); + endmodule |
