diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-11-19 20:23:17 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-11-20 16:46:29 -0600 |
| commit | 2d3c392de957db2252f935a4f2eb3f9a76943966 (patch) | |
| tree | 305cfb53ef33739055481b45bc9c5188b7cd4392 /rtl/gfx/gfx.sv | |
| parent | 33794ca29db5670bc140686ae6e6d3b7832ad406 (diff) | |
rtl/gfx: implement SP batch input stream
Diffstat (limited to '')
| -rw-r--r-- | rtl/gfx/gfx.sv | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/rtl/gfx/gfx.sv b/rtl/gfx/gfx.sv index 5fa3f35..1da3550 100644 --- a/rtl/gfx/gfx.sv +++ b/rtl/gfx/gfx.sv @@ -35,8 +35,8 @@ module gfx .* ); - logic fetch_read; - vram_addr fetch_address; + logic batch_read, fetch_read; + vram_addr batch_address, fetch_address; gfx_sp sp ( @@ -124,10 +124,10 @@ module gfx .* ); - logic fetch_readdatavalid, fb_readdatavalid, - fetch_waitrequest, fb_waitrequest, rop_waitrequest; + logic batch_readdatavalid, fb_readdatavalid, fetch_readdatavalid, + batch_waitrequest, fb_waitrequest, fetch_waitrequest, rop_waitrequest; - vram_word fetch_readdata, fb_readdata; + vram_word batch_readdata, fb_readdata, fetch_readdata; gfx_mem mem ( |
