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

Always Blocks

Installs
GitHub Stars
3
First Seen
SystemVerilog RTL Design — codejunkie99/gateflow-cli