Reset.v
From AGI Wiki
Jump to navigationJump to searchThe reset.v command indirectly changes a flag's value to FALSE.
Syntax
reset.v(var vA);
Remarks
Flag B, where B = vA, is reset to FALSE.
Possible Errors
Changing values of reserved flags can have unpredictable results, and should be done carefully.
Example
Code:
<syntaxhighlight lang="agi"> v50 = 99; reset.v(v50); [ now flag f99 is FALSE </syntaxhighlight>
Technical Information
Required Interpreter Version: | Available in all AGI versions. |
Byte-Code Value: | 16 (0x10 hex) |