Re: Bitmap palette

From: Marvin (Dweeb262_at_aol.com)
Date: 05/09/04


Date: Sun, 9 May 2004 04:09:44 +0000 (UTC)


> For the standard MCGA/VGA mode #13 (320x200x256) you can:
> out 3C8,<index of first palette entry>
> for each palette entry
> out 3C9,<red value>
> out 3C9,<green value>
> out 3C9,<blue value>
>
> H

So I would use this ?

out 3C8, index*n
out 3C9, R
out 3C9, G
out 3C9, B

or am I getting things mixed up?