What does "net" stand for in Verilog?

Randomblue picture Randomblue · Apr 2, 2012 · Viewed 16.6k times · Source

I'm just starting to learn Verilog. As I understand, Verilog has net datatypes.

What does net stand for?

Answer

sgowd picture sgowd · Apr 2, 2012

A net is such a data type, where you don't use it for storing values. They represent physical connections. You can think of wire as a net data type.
You can see more on nets here.