Key Concepts
Verilog is a Hardware Description Language (HDL). It is used to model electronic systems.
- Modules: Basic building blocks.
- Ports: Interfaces to the outside world.
module test(input a, output b);
assign b = ~a;
endmodule
assign b = ~a;
endmodule
Assignment
Implement a 4-bit counter using the concepts learned in this video.