else - Start else block

else - Start else block

Calling Format

else

Operands

None.

Overview

This is used in combination with ifc or ifb. When if is true, processing runs until this instruction and then skips all instructions until the next endif. When if is false, processing skips from the if instruction to this one and then runs all instructions between this and endif.

You must include at least one instruction between ifb and else, between ifc and else, and between else and endif.

Operation

if ( src == true )
{
    ...
}
else
{
    ...
}
endif

Code Example

ifb     b0
    ...
else
    ...
endif

Revision History

2011/12/20
Initial version.

CONFIDENTIAL