What is Pausable clocking?

Status
Not open for further replies.

vibhute_r_p

Member level 1
Joined
May 3, 2004
Messages
36
Helped
2
Reputation
4
Reaction score
1
Trophy points
1,288
Activity points
229
HAs any one done any experimentation with pausable clocking? What does it mean? CAn you provide some VHDL or verilog code?
 

pausable clocking?

simply that the clock can be paused and resumed without interfering logic operations, I think.
 

always @ (posedge clk or negedge clear)

if(!clear)

clk_2 <= 0 ;

else

if(!en_n)

clk_2 <= ~clk_2 ;

else

clk_2 <= clk_2 ;
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…