diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-11-02 22:19:26 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-11-10 01:43:02 -0600 |
| commit | d5de20fade70a0d454e3aa0087313ca715ff8759 (patch) | |
| tree | 55751c829e989500972c56f05a7b0cb5e4e07621 /rtl/gfx/gfx_scanout.sv | |
| parent | 09fcdbe01553385658fe437dcb1777008c0ceb39 (diff) | |
rtl/gfx: rename modules
Diffstat (limited to '')
| -rw-r--r-- | rtl/gfx/gfx_scanout.sv | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rtl/gfx/gfx_scanout.sv b/rtl/gfx/gfx_scanout.sv index c549782..18b700d 100644 --- a/rtl/gfx/gfx_scanout.sv +++ b/rtl/gfx/gfx_scanout.sv @@ -73,7 +73,7 @@ module gfx_scanout genvar i; generate for (i = 0; i < `GFX_SCAN_STAGES; ++i) begin: stages - pipeline_flow #(.STAGES(1)) fb_flow + gfx_pipeline_flow #(.STAGES(1)) fb_flow ( .stall(fb_stalls[i]), .in_ready(fb_ready[i]), @@ -83,7 +83,7 @@ module gfx_scanout .* ); - pipeline_flow #(.STAGES(1)) src_flow + gfx_pipeline_flow #(.STAGES(1)) src_flow ( .stall(src_stalls[i]), .in_ready(src_ready[i]), |
