3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-11-03 13:07:58 +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
No known key found for this signature in database

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.