Synchorous counter with parallel load

Georacer

Joined Nov 25, 2009
5,182
Unfortunately, no.

The idea of using a MUX to select between input and counting is correct, but:

The counter itself is wrong. See here: http://www.allaboutcircuits.com/vol_4/chpt_11/3.html for correct counter circuits.

The input method is wrong. A T-Flip Flop doesn't store what it is fed, unlike the D-FF. Therefore, feeding it the desired bit doesn't mean it will be stored too. You should find a way to handle the T-FF to make it do what you want (hint: XOR gate). Alternatively, you can switch for a D-FF (which will change the counter circuit, too).
 
Top