diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-05-21 12:29:30 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-05-24 05:58:42 -0600 |
| commit | bd5f7ec56e966855bc3c878fde3819bafe6f6c1e (patch) | |
| tree | 1a154e7c5bd83b7554e1f13fd53fb96db9d00b12 /rtl/gfx/gfx_top.sv | |
| parent | e15674334408644143aa6dbce6657614e59da370 (diff) | |
rtl/gfx, platform/wavelet3d, target/w3d_de1soc: add system-wide RAM mappings
Diffstat (limited to '')
| -rw-r--r-- | rtl/gfx/gfx_top.sv | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rtl/gfx/gfx_top.sv b/rtl/gfx/gfx_top.sv index 99f2133..93d5585 100644 --- a/rtl/gfx/gfx_top.sv +++ b/rtl/gfx/gfx_top.sv @@ -10,7 +10,7 @@ import gfx::*; if_axil.s host_ctrl ); - if_axib data_mem(), insn_mem(); + if_axib data_mem(), insn_mem(), sched_vram(); if_axil bootrom_axi(), debug_axi(), host_ctrl_axi(), sched_axi(), shader_0_axi(); logic irq_host_ctrl; @@ -64,6 +64,7 @@ import gfx::*; .sched(sched_axi.s), + .vram(sched_vram.m), .debug(debug_axi.m), .bootrom(bootrom_axi.m), .shader_0(shader_0_axi.m), @@ -75,6 +76,7 @@ import gfx::*; .clk, .srst_n, .vram, + .sched(sched_vram.s), .shader_0_data(data_mem.s), .shader_0_insn(insn_mem.s) ); |
