Skip to content

Commit

Permalink
Add note that \= only works for comb signals
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasWallner committed Oct 26, 2023
1 parent e160aa3 commit f733704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/SpinalHDL/Semantic/assignments.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ There are multiple assignment operators:
* - ``:=``
- Standard assignment, equivalent to ``<=`` in VHDL/Verilog.
* - ``\=``
- Equivalent to ``:=`` in VHDL and ``=`` in Verilog. The value is updated instantly in-place.
- Equivalent to ``:=`` in VHDL and ``=`` in Verilog. The value is updated instantly in-place. Only works with combinational signals, does not work with registers.
* - ``<>``
- Automatic connection between 2 signals or two bundles of the same type. Direction is inferred by using signal direction (in/out). (Similar behavior to ``:=``\ )

Expand Down

0 comments on commit f733704

Please sign in to comment.