SystemVerilog RTL Design
Installation
SKILL.md
SystemVerilog RTL Design Reference
Coding Standards
Signal Declarations
// Preferred: logic for all signals
logic [7:0] data;
logic valid;
// Avoid: reg/wire (older style)
// reg [7:0] data; // Don't use
// wire valid; // Don't use