mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
e631bfe3f1
-The directory should contain rtl only. -HDL is too broad a term
39 lines
1.2 KiB
Verilog
39 lines
1.2 KiB
Verilog
//#############################################################################
|
|
//# Function: Reset synchronizer (async assert, sync deassert) #
|
|
//#############################################################################
|
|
//# Author: Andreas Olofsson #
|
|
//# License: MIT (see LICENSE file in OH! repository) #
|
|
//#############################################################################
|
|
|
|
module oh_rsync
|
|
#(parameter SYNCPIPE = 2, // number of sync stages
|
|
parameter TARGET = "DEFAULT" // scell type/size
|
|
)
|
|
(
|
|
input clk,
|
|
input nrst_in,
|
|
output nrst_out
|
|
);
|
|
|
|
generate
|
|
if(TARGET == "DEFAULT")
|
|
begin
|
|
reg [SYNCPIPE-1:0] sync_pipe;
|
|
always @ (posedge clk or negedge nrst_in)
|
|
if(!nrst_in)
|
|
sync_pipe[SYNCPIPE-1:0] <= 'b0;
|
|
else
|
|
sync_pipe[SYNCPIPE-1:0] <= {sync_pipe[SYNCPIPE-2:0],1'b1};
|
|
assign nrst_out = sync_pipe[SYNCPIPE-1];
|
|
end
|
|
else
|
|
begin
|
|
asic_rsync #(.TARGET(TARGET),
|
|
.SYNCPIPE(SYNCPIPE))
|
|
asic_rsync (.clk(clk),
|
|
.nrst_in(nrst_in),
|
|
.nrst_out(nrst_out));
|
|
end
|
|
endgenerate
|
|
endmodule // oh_rsync
|