diff --git a/isp.v b/isp.v index a02d740..c2424c9 100644 --- a/isp.v +++ b/isp.v @@ -1,9 +1,14 @@ `timescale 1ns/1ps module isp #( - parameters + parameter IN_WIDTH = 1936; + parameter IN_HEIGHT = 1088; + parameter OUT_WIDTH = 1920; + parameter OUT_HEIGHT = 1080; ) ( - ports + input clk; + input reset; + ); endmodule \ No newline at end of file