You copied the Doc URL to your clipboard.
ASSERT
The ASSERT
directive generates an error message during assembly if a given assertion is false.
Syntax
ASSERT
logical-expression
where:
logical-expression
is an assertion that can evaluate to either
{TRUE}
or{FALSE}
.
Usage
Use ASSERT
to ensure that any necessary
condition is met during assembly.
If the assertion is false an error message is generated and assembly fails.
Example
ASSERT label1 <= label2 ; Tests if the address ; represented by label1 ; is <= the address ; represented by label2.