`timescale 1ns/1ns

module JC_counter(
   input                clk ,
   input                rst_n,
 
   output reg [3:0]     Q  
);

always@(posedge clk or negedge rst_n)
    if(!rst_n)
        Q   <=  4'd0;
    else 
        Q   <=  {~Q[0],Q[3:1]};

endmodule