SetTextColor PROC    (Not available in the 16-bit library)

   Changes the color of all subsequent text output.

Call args:  EAX = Bits 0-3 = foreground color
                  Bits 4-7 = background color

Return arg: None

Example: Set for yellow text on blue background

INCLUDE Irvine32.inc ;for color definitions

      mov  eax,yellow+(blue*16)
      call SetTextColor
Note: The colors defined in Irvine32.inc are:
black, white, brown, yellow, blue, green, cyan, red, magenta, gray, lightBlue, lightGreen, lightCyan, lightRed, lightMagenta, and lightGray.
Converted from CHM to HTML with chm2web Pro 2.85 (unicode)