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

                XLIB    l_long_le
                LIB     l_long_cmp




;
;......logical operations: HL set to 0 (false) or 1 (true)
;
; DE <= HL [signed]
.l_long_le
        call    l_long_cmp
        ret     z
        ret     c
        dec     hl
        ret
