vault backup: 2025-02-03 11:44:23

This commit is contained in:
arc 2025-02-03 11:44:23 -07:00
parent b4c30e79ef
commit 3b4bb73264

View File

@ -7,6 +7,7 @@ Module definitions are started with the `module` keyword, and closed with the `e
## Syntax
The general syntax of a module is as follows:
```verilog
// This line is referred to as the *module header*
module <name> ([port_list]);
// Contents of the module
endmodule
@ -130,4 +131,5 @@ module parent;
Because association is done by name, the order of definition does not matter.
### Unconnected ports
Ports that are not connected to any wire by the parent module will have a value of high impedance
Ports that are not connected to any wire by the parent module will have a value of high impedance, and is considered unknown/undefined.