;       Z88 Small C+ Run Time Library 
;       Long functions
;

                XLIB    l_long_uge
                LIB     l_long_ucmp




;
;......logical operations: HL set to 0 (false) or 1 (true)
;

; primary (stack) >= secondary (dehl)

.l_long_uge
        call    l_long_ucmp
        ret     z
        ret     nc
        dec     hl
        ret
