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

                XLIB    l_long_gt
                LIB     l_long_cmp




;
;......logical operations: HL set to 0 (false) or 1 (true)
;
; dehl (stack) > dehl (reg)
; if true, then the resulting number from l_long_cmp will be +ve

.l_long_gt  
        call    l_long_cmp
        ret   nc
        dec   hl
        ret
