Difference between revisions of "Toggle.v"

From AGI Wiki
Jump to navigationJump to search
(Created page with "The '''toggle.v''' command toggles a flag's value indirectly. == Syntax == toggle.v(var vA); == Remarks == Toggles flag '''fB''' (from FALSE to TRUE o...")
 
(No difference)

Latest revision as of 07:12, 24 April 2019

The toggle.v command toggles a flag's value indirectly.

Syntax

toggle.v(var vA);

Remarks

Toggles flag fB (from FALSE to TRUE or TRUE to FALSE), where B is the value of vA.

Possible Errors

Changing values of reserved flags can have unpredictable results, and should be done carefully.

Example

Code:
v50 = 99;
set.v(v50);     [ f99 is now TRUE
toggle.v(v50);  [ f99 is now FALSE

Technical Information

Required Interpreter Version: Available in all AGI versions.
Byte-Code Value: 17 (0x11 hex)

See Also

Flag Commands