ISP/isp.v

14 lines
216 B
Coq
Raw Normal View History

2024-05-09 22:56:32 +08:00
`timescale 1ns/1ps
module isp #(
2024-05-09 23:23:23 +08:00
parameter IN_WIDTH = 1936;
parameter IN_HEIGHT = 1088;
parameter OUT_WIDTH = 1920;
parameter OUT_HEIGHT = 1080;
2024-05-09 22:56:32 +08:00
) (
2024-05-09 23:23:23 +08:00
input clk;
input reset;
2024-05-09 22:56:32 +08:00
);
endmodule