Function 47 - draw a number in the window.
Parameters:
- eax = 47 - function number
- ebx = parameters of conversion number to text:
- bl = 0 - ecx contains number
- bl = 1 - ecx contains pointer to dword-number
- bh = 0 - display in decimal number system
- bh = 1 - display in hexadecimal system
- bh = 2 - display in binary system
- биты 16-21 = how many digits to display
- биты 22-31 reserved and must be set to 0
- ecx = number (if bl=0) or pointer (if bl=1)
- edx = [coordinate on axis x]*65536 + [coordinate on axis y]
- esi = 0xX0RRGGBB:
- RR, GG, BB specify the color
- X = ABnn (bits)
- nn = font (0/1)
- A is ignored
- B=1 - fill background with the color edi
Returned value:
- function does not return value
Remarks:
- The given length must not exceed 60.
- The exactly given amount of digits is output. If number is small
and can be written by smaller amount of digits, it is supplemented
by leading zeroes; if the number is big and can not be written by
given amount of digits, extra digits are not drawn.
- Parameters of fonts are shown in the description of function 4
(text output).