summaryrefslogtreecommitdiff
path: root/part_2/ex5/counter_8.v
blob: 84052fc171bd727add044427d52455902d1e9a16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
`timescale 1ns / 100ps


module counter_8 (
	clock,
		enable,
		count
		);
		
		parameter BIT_SZ = 8;
		input clock;
		input enable;
		output [BIT_SZ-1:0] count;
		
		reg[BIT_SZ-1:0] count;
		
		initial count = 0;
		
		always @ (posedge clock)
			if (enable == 1'b1)
				count <= count + 1'b1;				
endmodule