Q:Design a simple circuit based on combinational logic to double the
output frequency.
A:
______________
____ ____ ____ | | _ _ _ _
| | | | | | | | | | | | | | | |
_| |____| |____| |__ | | _| |_| |_| |_| |_
| |
------------------------------>| |-------------------->
| |
|______________|
|\ |\
| \ | \
____| \o_________| \o______
| | / | / |
| | / | / |
| |/ not |/ not |
| |
| | \\----.
| +----\\ \
| || )--------+
---+----------------------------------// /
//----'
XOR
Every signal will appear with a delay on the input 1 comparing to input 2 (see the schematic above) of the XOR element.
The delay is equal to the propagation time of the invertors.
Due to the delay the XOR element will generate a pulse on every change of the input signal.
matrixshan:
I believe ( please correct me if I am wrong ) there will be
XNOR gate if two NOT gates are being used i.e. effectively
XNORing the input and its replica. If XOR gate is used the
input signal and its inverted will be XORed.
|