x393  1.0
FPGAcodeforElphelNC393camera
dci_reset.v
Go to the documentation of this file.
1 
39 `timescale 1ns/1ps
40 
41 module dci_reset(
42  input reset,
43  output ready
44 );
45  DCIRESET DCIRESET_i (
46  .LOCKED(ready), // output
47  .RST(reset) // input
48  );
49 
50 endmodule
51 
DCIRESET_i DCIRESET
Definition: dci_reset.v:45