Until
UNTIL
Designates the end of the Repeat/Until Loop, and defined condition to end loop.
UNTIL= ### (ends loop or repeats it again based on comparison of equal)
UNTIL< ### (ends loop or repeats it again based on comparison of less than)
UNTIL> ### (ends loop or repeats it again based on comparison of greater than)
UNTILR ###:### (ends loop or repeats it again based on comparison of range values. Low value and high value separated by a colon)
UNTILM ### (ends loop when comparison value ANDed with Bit-Mask equal value)
The UNTILR command is inclusive, meaning the value is valid if not only between the two range values but also including the range values themselves.