FreeCalypso > hg > fc-pcm-if
view fpga/mcsi-rx/clk_edge.v @ 16:f422d19c0118 default tip
fc-mcsi-rxtx: fix bug in PCM sample Rx
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 29 Oct 2024 01:41:33 +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