This commit is contained in:
SelfConfusion 2024-05-09 23:23:23 +08:00
parent 536bb715b1
commit 2d29d809f5
1 changed files with 7 additions and 2 deletions

9
isp.v
View File

@ -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