;       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_asl


; shift DE left arithmetically by HL, move to HL

.l_asl 
        ex de,hl
.l_asl1   
        dec   e
        ret   m
        add   hl,hl
        jr    l_asl1
