1/13
Vocabulary-based practice flashcards covering fundamental concepts of asynchronous and synchronous counters, IC chips, and shift register counters.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
Counter
A sequential logic circuit made up of several flip-flops used to count events and time the duration of various processes.
Asynchronous counter
A type of counter where the flip-flops (FF) within the counter do not change states at exactly the same time; the change in the output of one flip-flop initiates a change in the next.
Maximum Count (N)
The maximum binary number which the counter can reach before returning to its zero state, determined by the formula N=2n−1 where n is the number of flip-flops.
Modulus (MOD)
The number of distinct states the counter goes through before repeating, calculated as MOD=2n where n is the number of flip-flops.
Modulo-16 counter
A counter with 4 bits (24=16) that goes through 16 different states in its counting sequence.
Frequency Division
The process performed by a counter where each flip-flop divides its input frequency by two; the total division factor for n flip-flops is 2n.
Counter with any MOD number (MOD-X)
A basic counter modified to produce MOD numbers less than 2n by skipping states, typically using a NAND gate connected to the asynchronous CLEAR inputs.
7493/74293 IC chip
A 4-bit ripple counter consisting of four flip-flops connected to provide separate MOD-2 (0-to-1) and MOD-8 (0-to-7) sections.
7490/74290 Counter IC chip
An IC chip with an internal structure consisting of four flip-flops providing separate MOD-2 (0-to-1) and MOD-5 (0-to-4) sections.
BCD counter
A counter that counts from 0000 to 1001, representing Binary Coded Decimal codes; also known as a decade counter.
Cascading
Connecting the last-stage output of one counter to drive the input of the next counter to achieve a higher modulus operation.
Synchronous (Parallel) Counter
A counter where all flip-flops are triggered simultaneously by the clock input pulses, allowing for operation at higher clock frequencies.
Ring Counter
A shift register counter where the serial output is connected back to the serial input, resulting in a modulus equal to the number of flip-flops (n).
Johnson Counter
Also known as a Twisted-Ring counter, it is constructed like a normal ring counter except the inverted output of the last flip-flop is connected to the input of the first flip-flop; its modulus is 2n.