diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-11-21 01:47:23 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-11-21 18:02:52 -0600 |
| commit | 3821d219fa63837f847027022e1d585688ec66a9 (patch) | |
| tree | 3fb653c5d212e8ecf7b78ac47495f733a5b36369 /rtl/gfx/gfx_sp.sv | |
| parent | 7f20f4493ef1938f0ea8e86dc16f5c058fe7e4f3 (diff) | |
rtl/gfx: implement SP combiner
Diffstat (limited to 'rtl/gfx/gfx_sp.sv')
| -rw-r--r-- | rtl/gfx/gfx_sp.sv | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/rtl/gfx/gfx_sp.sv b/rtl/gfx/gfx_sp.sv index a65bd6e..acb1dc2 100644 --- a/rtl/gfx/gfx_sp.sv +++ b/rtl/gfx/gfx_sp.sv @@ -64,6 +64,19 @@ module gfx_sp .* ); + gfx_sp_combiner combiner + ( + .a(), + .b(), + .wb(), + .deco(), + .in_ready(), + .in_valid(0), + .wb_ready(1), + .wb_valid(), + .* + ); + logic batch_end, deco_ready; assign deco_ready = 1; |
