sclk_gen angelegt

This commit is contained in:
2024-02-28 16:28:41 +01:00
parent 613c9fc1f5
commit 1305535fdf

View File

@@ -0,0 +1,19 @@
module sclk_gen (input ENA,input SYNC,input RESETn,input CPHA,input CLK,input CPOL,output SCLK);
wire T1_D
wire T1_ENA
wire T1_CLR
reg T1_Q
wire Q1_D
wire Q1_ENA
wire Q1_CLR
reg Q1_Q
reg
always @(posedge CLK or posedge RESETn) begin
end
endmodule