;       Z88 Small C+ Run time Library
;       Moved functions over to proper libdefs
;       To make startup code smaller and neater!
;
;       6/9/98  djm

                XLIB    l_and

; "and" HL and DE into HL
.l_and 
        ld a,l
        and   e
        ld l,a
        ld a,h
        and   d
        ld h,a
        ret


