Forum Discussion
Altera_Forum
Honored Contributor
15 years agoaclr = asynchronous clear. Registers are reset immediatly.
sclr = synchronous clear. Registered are reset on the next rising edge of the clock. using aclr can be dangerous if you dont control it properly. If you have to use aclr ports, its best to reset them from a synchronous source. Aclr can be useful in VHDL code for setting powerup values sclr is much safer (and recommended) but you cannot infer power up values from it.