1
IFZ
Nunuhara Cabbage edited this page 2022-06-30 14:30:18 -07:00

IFZ

Instruction Arguments

int32 addr - The address to jump to

Stack Arguments

int32 test - The test value

Description

Jump to an address if the test value is zero.

Example

    PUSH 0x0   ; test value
    IFZ label  ; jump to 'label' (if test value is zero)
    PUSH 0x0   ; not executed
label:
    PUSH 0x1   ; executed