From 2d29d809f5946e3c002e34b436cfde930d27ad77 Mon Sep 17 00:00:00 2001 From: SelfConfusion <1822250894@qq.com> Date: Thu, 9 May 2024 23:23:23 +0800 Subject: [PATCH] add some --- isp.v | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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