
;    if ( scr2 > 5 ) {
        cmp     scr2, 5     ; subtracts scr2-5 without saving
        jng     else        ; jump if not greater than

;       do whatever

        jmp     end_if
} else {
else:                       ; name this label whatever

;       or do this if rax is less than or equal to 5

;    }
end_if:

