Initial commit for fpga-shells
This commit is contained in:
15
xilinx/common/vsrc/PowerOnResetFPGAOnly.v
Normal file
15
xilinx/common/vsrc/PowerOnResetFPGAOnly.v
Normal file
@ -0,0 +1,15 @@
|
||||
// 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
|
Reference in New Issue
Block a user