Subject:           Re: how can I use 640*480*256 mode?
      Date:           Sun, 5 Jul 1998 10:50:26 +0400
      From:           "Harry Poloscov" <harrinn@glasnet.ru>
 Organization:        Green Lamp co.
 Newsgroups:          comp.lang.pascal.borland
 

Jan Buchwald wrote in <01bda7d0$f45fd800$2cc408c2@jan> ...
>but I'm looking for a mode that supports 640*480*256 ,
>or 640*480*256 mode
 

INT 10 - VESA SuperVGA BIOS - SET SuperVGA VIDEO MODE
        AX = 4F02h
        BX = mode
             bit 15 set means don't clear video memory
Return: AL = 4Fh function supported
        AH = status
             00h successful
             01h failed
SeeAlso: AX=4F01h,AX=4F03h
Values for VESA video mode:
  00h-FFh OEM video modes (see AH=00h)
 100h 640x400x256
 101h 640x480x256
 102h 800x600x16
 103h 800x600x256
 104h 1024x768x16
 105h 1024x768x256
 106h 1280x1024x16
 107h 1280x1024x256
 108h 80x60 text
 109h 132x25 text
 10Ah 132x43 text
 10Bh 132x50 text
 10Ch 132x60 text

Reprinted from Finn Thoegersen, SVGA Specifications.