We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be64e08 commit 751971aCopy full SHA for 751971a
docs/src/explanations/operators.md
@@ -33,7 +33,7 @@ Chisel defines a set of hardware operators:
33
| **Logical Operations** | **Valid on:** Bool
34
| `val sleep = !busy` | Logical NOT |
35
| `val hit = tagMatch && valid` | Logical AND |
36
-| `val stall = src1busy || src2busy` | Logical OR |
+| `val stall = src1busy \|\| src2busy` | Logical OR |
37
| `val out = Mux(sel, inTrue, inFalse)` | Two-input mux where sel is a Bool |
38
| **Arithmetic operations** | **Valid on Nums:** SInt and UInt. |
39
| `val sum = a + b` *or* `val sum = a +% b` | Addition (without width expansion) |
0 commit comments