From c2ddefda2ed6badddac5c229f59fcb25860759a4 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Mon, 20 Nov 2023 18:47:55 -0600 Subject: rtl/gfx: remove gfx_{perspective{,_flow}, fp_inv} --- rtl/gfx/gfx_fp_inv.sv | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 rtl/gfx/gfx_fp_inv.sv (limited to 'rtl/gfx/gfx_fp_inv.sv') 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 -- cgit v1.2.3