A HDL that is:
- Weakly typed
- Concise
- Deterministic
- C-like System Verilog is the better version of verilog.
Installation/Setup
- With VSCode, install
 
- yay -S iverilog
- yay -S gtkwave
Simulating .v File
- Write the .vfile
- iverilog -o output.vpp input.v
- vpp output.vpp
- gtkwave output.vcd
Concepts
Boilerplate
module module_name(){
	input A;
	output B;
	assign B = !A;
}
endmodule