From f733704d5f4335164f2abf8f73db7f745a241c83 Mon Sep 17 00:00:00 2001 From: Andreas Wallner Date: Thu, 26 Oct 2023 20:23:56 +0200 Subject: [PATCH] Add note that \= only works for comb signals --- source/SpinalHDL/Semantic/assignments.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/SpinalHDL/Semantic/assignments.rst b/source/SpinalHDL/Semantic/assignments.rst index a404e1a1c63..f25ed382f77 100644 --- a/source/SpinalHDL/Semantic/assignments.rst +++ b/source/SpinalHDL/Semantic/assignments.rst @@ -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 ``:=``\ )