diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-11-20 18:47:55 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-11-20 21:29:11 -0600 |
| commit | c2ddefda2ed6badddac5c229f59fcb25860759a4 (patch) | |
| tree | e1c221fe732dbaa3de75e824f66f5ea730bb01d6 /rtl/gfx/gfx_fp_inv.sv | |
| parent | 314a2a21260a8b61a5679dfc1f7df9b18c785535 (diff) | |
rtl/gfx: remove gfx_{perspective{,_flow}, fp_inv}
Diffstat (limited to '')
| -rw-r--r-- | rtl/gfx/gfx_fp_inv.sv | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/rtl/gfx/gfx_fp_inv.sv b/rtl/gfx/gfx_fp_inv.sv deleted file mode 100644 index 33f7bf8..0000000 --- a/rtl/gfx/gfx_fp_inv.sv +++ /dev/null @@ -1,33 +0,0 @@ -`include "gfx/gfx_defs.sv" - -module gfx_fp_inv -( - input logic clk, - - input fp a, - input logic stall, - - output fp q -); - -`ifndef VERILATOR - ip_fp_inv ip_inv - ( - .en(!stall), - .areset(0), - .* - ); -`else - fp a_pop; - - assign q = $c("taller::fp_inv(", a_pop, ")"); - - gfx_pipes #(.WIDTH($bits(a)), .DEPTH(`FP_INV_STAGES)) a_pipes - ( - .in(a), - .out(a_pop), - .* - ); -`endif - -endmodule |
