diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-05-05 18:45:11 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-05-05 18:45:11 -0600 |
| commit | 638b75fb4c8fdc3c9d3a208f6bd9976841bc0928 (patch) | |
| tree | 3f26dad5958d6713d942b53b8c0bf62e003565a3 /rtl/gfx/gfx_shader_front.sv | |
| parent | 1ffcdb62cd7e95ccd3f971d0b5cb2e617e1481b2 (diff) | |
rtl/if_common: initial commit, moved out of gfx
Diffstat (limited to 'rtl/gfx/gfx_shader_front.sv')
| -rw-r--r-- | rtl/gfx/gfx_shader_front.sv | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rtl/gfx/gfx_shader_front.sv b/rtl/gfx/gfx_shader_front.sv index 52074fd..0a2b8b8 100644 --- a/rtl/gfx/gfx_shader_front.sv +++ b/rtl/gfx/gfx_shader_front.sv @@ -34,7 +34,7 @@ import gfx::*; input logic clk, rst_n, - gfx_axib.m fetch_mem, + if_axib.m fetch_mem, input logic icache_flush, @@ -101,7 +101,7 @@ import gfx::*; input logic clk, rst_n, - gfx_axib.m mem, + if_axib.m mem, input logic icache_flush, @@ -116,7 +116,7 @@ import gfx::*; localparam int ICACHE_STAGES = 6; localparam int BIND_STAGES = REGFILE_STAGES + ICACHE_STAGES; - gfx_beats #($bits(group_id)) runnable_in(), runnable_out(); + if_beats #($bits(group_id)) runnable_in(), runnable_out(); logic ar_stall, request_ready, request_valid, valids[BIND_STAGES]; group_id groups[BIND_STAGES]; @@ -251,7 +251,7 @@ import gfx::*; oword data; } cache[1 << $bits(icache_line_num)], read, read_hold; - gfx_beats #($bits(icache_line_tag)) pending_in(), pending_out(); + if_beats #($bits(icache_line_tag)) pending_in(), pending_out(); logic accessed_write, accessed_write_enable, burst, fetch_done, hit_write, in_flush, hit_commit, hit_write_enable, retry_4, retry_5, rollback, |
