The MASM Forum Archive 2004 to 2012

Miscellaneous Forums => 16 bit DOS Programming => Topic started by: Vortex on December 25, 2004, 01:01:29 PM

Title: Printing decimals
Post by: Vortex on December 25, 2004, 01:01:29 PM
Here is a very usefull print decimal routine coded by MichaelW:
PrintDec PROC numb:WORD
mov ax,numb   
;
   ; Init divisor.
mov bx,10
   ; Zero digit counter.
mov cx,0
@@:
   ; Zero MSW of dividend.
mov dx,0
   ; Divide value by 10.
div bx
   ; Push remainder.
push dx
   ; Increment digit count.
inc cx
   ; Repeat if quotient > 0.
or ax,ax
jnz @B
@@:
   ; Pop digit off stack.
pop dx
   ; Convert to ascii.
add dl,30h
   ; Display.
mov ah,2
int 21h
   ; Repeat CX times.
loop @B
ret
PrintDec ENDP


Thanks Michael  :U