vault backup: 2025-02-03 10:09:19

This commit is contained in:
arc 2025-02-03 10:09:19 -07:00
parent 400c362f17
commit 0295402131

View File

@ -1,2 +1,10 @@
There are two main categories of data types in Verilog. These ty There are two main categories of data types in Verilog. These categories differ in the underlying hardware structure they represent, and they differ in the way they are assigned and retain values.
# Nets # Nets
A *net* refers to a *network* of connections that join two or more devices together.
Nets connect different hardware entities and *do not store values*.
## Wire
A `wire` is the most commonly used type of net. When a port is declared in Verilog, it is implicitly given a type of `wire`.
It is illegal to re-declare a name already in use by a net
# Scalar and Vector