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

; store int from HL into (DE)
.l_pint   
        ld a,l
        ld (de),a
        inc   de
        ld a,h
        ld (de),a
        ret