`timescale 1ns/1ns module seq_circuit( input A , input clk , input rst_n, output wire Y ); reg Y1; reg Q1, Q2; reg Q1n,Q2n; always@(posedge clk or negedge rst_n)begin if (!rst_n) begin Y1 <= 0; ...