I'm very new to Verilog HDL and I have to code this 4bit up down counter. With the help of some reading on up-down counters and t flipflops, I already made the following code:
module up_down_4bitcounter (
out,
up_down,
clk,
data,
reset
);
//Output Ports
output [3:0] out;
//Input Ports
input [3:0] data;
input up_down, clk, reset;
//Internal Variables
reg [3:0] out;
//Start of Code
always @(negedge clk)
if (reset) begin // active high reset
out <= 4'b0 ;
end else if (up_down) begin
out <= out + 1;
end else begin
out <= out - 1;
end
endmodule
Now, I'm getting this error:
Exercise5_1.v:25: syntax error
Exercise5_1.v:25: error: unmatched character (')
Exercise5_1.v:25: error: malformed statement
Line 25 is this one:
out <= 4'b0 ;
I am not 100% sure if my coding is correct. Can you tell me where my issue is?