1
0
mirror of synced 2026-04-15 01:34:14 +00:00

docs: Note partial support of modports

This commit is contained in:
Krystine Sherwin
2025-10-14 14:59:32 +13:00
parent 25f2a88770
commit bbceaa6b5e

View File

@@ -370,7 +370,10 @@ from SystemVerilog:
- array literals are currently not supported
- SystemVerilog interfaces (SVIs) are supported. Modports for specifying whether
ports are inputs or outputs are supported.
ports are inputs or outputs are supported when used with named arguments, but
not positional arguments. i.e. ``driver_mod d0(.intf(intf0),
.in(inputs[0]));`` is supported but ``driver_mod d0(intf0, inputs[0]);`` is
not.
- Assignments within expressions are supported.