Intel® Quartus® Prime Pro Edition User Guide: Debug Tools
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: mwh1410384690093
Ixiasoft
Visible to Intel only — GUID: mwh1410384690093
Ixiasoft
2.4.6.11.5.2. <boolean_expression>
Collection of operators and operands that evaluate into a Boolean result. The operators can be logical or relational. Depending on the operator, the operand can reference a trigger condition, a counter and a register, or a numeric value. To group a set of operands within an expression, you use parentheses.
Operator | Description | Syntax |
---|---|---|
! | NOT operator | ! expr1 |
&& | AND operator | expr1 && expr2 |
|| | OR operator | expr1 || expr2 |
Operator | Description | Syntax |
---|---|---|
> | Greater than |
|
>= | Greater than or Equal to |
|
== | Equals |
|
!= | Does not equal |
|
<= | Less than or equal to |
|
< | Less than |
|
Notes to table:
|
- The <boolean_expression> in an if statement can contain a single event or multiple event conditions.
- When the boolean expression evaluates TRUE, the logic analyzer evaluates all the commands in the <action_list> concurrently.