diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-05-19 20:04:27 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-05-24 05:58:41 -0600 |
| commit | 00bb8b7fe0044055c097e4bb6dbb7b45ec9dc3f5 (patch) | |
| tree | 44de52a7b568768ae65af2bc740563c5137265ca /platform/wavelet3d/w3d_top.sv | |
| parent | 1246f6ec28f37c8bf85dd6262928c92899a5a539 (diff) | |
rtl/gfx, platform/wavelet3d: implement vram interconnects
Diffstat (limited to 'platform/wavelet3d/w3d_top.sv')
| -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 b80446a..b4d903e 100644 --- a/platform/wavelet3d/w3d_top.sv +++ b/platform/wavelet3d/w3d_top.sv @@ -64,7 +64,7 @@ module w3d_top ); if_tap host_jtag(); - if_axib dram(), host_dbus(), host_ibus(); + if_axib dram(), host_dbus(), host_ibus(), gfx_vram(); if_axil mmio(), gfx_ctrl(); assign dram_awid = dram.s.awid; @@ -137,6 +137,7 @@ module w3d_top .clk, .rst_n, .srst_n, + .vram(gfx_vram.m), .host_ctrl(gfx_ctrl.s) ); @@ -155,6 +156,7 @@ module w3d_top .srst_n, .dram(dram.m), .gfx_ctrl(gfx_ctrl.m), + .gfx_vram(gfx_vram.s), .host_dbus(host_dbus.s), .host_ibus(host_ibus.s), .external_io(mmio.m) |
