Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

what is "USE hold register & MUX architecture"

Status
Not open for further replies.

mallikmarasu

Member level 3
Joined
Dec 21, 2006
Messages
58
Helped
3
Reputation
6
Reaction score
1
Trophy points
1,288
Activity points
1,703
hi to everyone,

what is "USE hold register & MUX architecture" ?

can any one explain clearly abt this one .

regards
mallikarjun
 

---------------
assign mux_out = sel ? flop_in : flop_out;

always @ (posedge clk2 or negedge rest) begin
if (!rst)
q <= 1'b0;
else
flop_out <= mux_out;
---------------

The use hold register & mux architecture is used as synchronizer at clock domain crossing. As shown in above code the signal flop_in from one clock domain is sent to flop flop_out in clock domain 2 only when the mux select line sel is high.

Normally the select line sel is passed through a double flop synchronizer and then used as select line for the mux.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top