Verilog Code for Binary Up/Down Counter

verilog
hdl
counter
digital logic
binary

This article provides Verilog HDL code for a binary up/down counter.

Symbol and Truth Table

The following is the truth table of the binary up/down counter:

binary up down counter

ClkRstDirQout
X1X0000
1000001
1000010
1000011
1000100
1000101
1000110
1000111
1001000
1001001
1001010
1001011
1001100
1001101
1001110
1001111

Verilog Code

module bin_as(clk,clr,dir, temp);
  input clk,clr,dir;
  output reg[3:0] temp;

  always@(posedge clk,posedge clr)
  begin
    if(clr==0)
    begin
      if(dir==0)
        temp=temp+1;
      else
        temp=temp-1;
    end
    else
      temp=4'd0;
  end
endmodule

Simulation Result

Here’s the simulation result of the above Verilog code:

binary up down counter simulation result