blob: bf15520d772277ba30b95efaf16ba9d737b159f0 (
plain)
1
2
3
4
5
6
7
8
9
|
module counters_3 (input wire c, input wire aload, input wire [3:0]d,
output reg [3:0] q);
always @(posedge c, posedge aload) begin
if (aload)
q <= d;
else
q <= q + 1;
end
endmodule
|