; LOOP · how we try · edi=i esi=n
; LINEAR BGS->BGF->SDF · atoms EZZIE PHI THERMO on BGF · free rides · no duo
; eax = 1 if i<n continue · 0 if done · linear · no fold RNG
; free RNG is OUTSIDE the loop test · never eaten here
        xor     eax, eax
        cmp     edi, esi
        jge     .done
        mov     eax, 1
.done:  ret

        ret
