URL
https://opencores.org/ocsvn/srdydrdy_lib/srdydrdy_lib/trunk
Subversion Repositories srdydrdy_lib
[/] [srdydrdy_lib/] [trunk/] [examples/] [bridge/] [rtl/] [port_clocking.v] - Rev 11
Go to most recent revision | Compare with Previous | Blame | View Log
module port_clocking (input clk, input reset, input gmii_rx_clk, output gmii_rx_reset ); // if this were a testable design, clock muxing logic would go here as well reg rx_sync1, rx_sync2; always @(posedge gmii_rx_clk) begin rx_sync1 <= #1 reset; rx_sync2 <= #1 rx_sync1; end assign gmii_rx_reset = reset | rx_sync2; endmodule // port_clocking
Go to most recent revision | Compare with Previous | Blame | View Log