You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Subtract the source from the target operand and ensure non-negative result.
169
168
@@ -514,12 +513,6 @@ The `lpb` can also have a second (optional) argument. In that case, the loop cou
514
513
515
514
The `clr` (clear) operation resets a memory region to zero. The target operand marks the start of the memory region. The second argument is the length of the memory region. For example `clr $2,3` sets the memory cells `$2`,`$3``$4` to zero. If the length is negative, the memory region is reset to the left-hand side of the target operand.
516
515
517
-
<aname="sor"/>
518
-
519
-
## **sor** (Sort)
520
-
521
-
The `sor` operation sorts a memory region. The target operand marks the start of the memory region. The second argument is the length of the memory region. For example `sor $2,3` sorts the memory cells `$2`,`$3``$4` in ascending order. If the length is negative, the memory region is reset to the left-hand side of the target operand. This can be used to sort a region in descending order.
0 commit comments