view fpga/mcsi-rx/clk_edge.v @ 5:3ae4a6ca5639

add README
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 12 Oct 2024 03:11:17 +0000
parents b3190839cce3
children
line wrap: on
line source

/*
 * This Verilog module captures the logic that detects falling edges of
 * MCSI_CLK: it is the edge on which we have to sample data and frame sync.
 */

module clk_edge (IntClk, MCSI_CLK_sync, MCSI_CLK_negedge);

input IntClk;
input MCSI_CLK_sync;
output MCSI_CLK_negedge;

reg prev_state;

always @(posedge IntClk)
	prev_state <= MCSI_CLK_sync;

assign MCSI_CLK_negedge = !MCSI_CLK_sync && prev_state;

endmodule