16 lines
248 B
Coq
16 lines
248 B
Coq
|
// See LICENSE file for license details.
|
||
|
|
||
|
module PowerOnResetFPGAOnly(
|
||
|
input clock,
|
||
|
output reg power_on_reset
|
||
|
);
|
||
|
|
||
|
initial begin
|
||
|
power_on_reset <= 1'b1;
|
||
|
end
|
||
|
|
||
|
always @(posedge clock) begin
|
||
|
power_on_reset <= 1'b0;
|
||
|
end
|
||
|
endmodule
|