A T flip-flop is a 1-bit synchronous storage component
alternative to the D flip-flop, with a slightly different
interface. The T flip-flop has one input t to
synchronously control the state of the flip-flop, as follows:
When t is 0, the flip-flop does not change its
state value.
When t is 1, the flip-flop inverts its current
state value (0 becomes 1, and 1 becomes 0).
Write a Verilog module for the T flip-flop using a behavioral
model. The flip-flop...