`timescale 1ns/1ns module Tff_2 ( input wire data, clk, rst, output reg q ); //*************code***********// wire q_temp,qout; Tff_1 tff1(.t(data),.clk(clk),.rst(rst),.q(q_temp)); Tff_1 tff2(.t(q_temp),.clk(clk),.rst(rst),.q(qout)); always @(*) begin q=qout; end //*************code***********// end...