;==============================================================================;
;                            WRITE3.LIB   v1.0
;                 (C) 1998. by Pila & A'rpi of ESP-team
;==============================================================================;
; routine name:
; WRITE + [RADIX|DEC|HEX] + [8|16|32] + [S] + [_STOSB|_SCR_|_USER] + [_CX]
;                                       ^-----^---optional-----------^
; Example: WRITEDEC32S_SCR_CX (write a DECimal, 32bit Signed number to SCRreen)
;
; Input parameters:
; Common:
;    AL/AX/EAX=number to write
; _STOSB versions:
;    ES:DI->puffer
; _SCR (screen) versions:
;    ES:DI->screen position
;    BL=color code
; _USER versions:
;    #WRITE3LIB_USER_WRITECHR(AL)= user's writechr macro
; _CX versions:  (not available for HEX writers)
;    CX=field width  (xsize)
;    BH=fill char ascii-code

