Palettes

From NeoGeo Development Wiki
Revision as of 19:00, 30 June 2018 by Hpman (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Palettes organization.

There are 2 banks (one usable at a time) of 256 palettes available. Each palette has 16 color entries, the first being the transparent index ("color 0"), the 15 others are real colors, made of 16-bit RGB definitions.

Sprite tiles can use any of the 256 palettes, while the fix tiles can only use the first 16.

The maximum number of colors on screen without timer interrupt tricks is: 256 palettes * 15 colors + 1 (backdrop) = 3841 (out of 2^16 = 65536).

Color format

See colors.

Access

Palettes are located at $400000 in the 68k memory map. They're physically stored in the palette RAM.

Byte writes are allowed, but the value will be written to both bytes of the word (/WE pins are tied together).

The palettes can be read and written at full speed at any time. During active display, since the CPU has priority over rendering, the color read or written will be displayed during at least one pixel, resulting in noticeable "snow" if multiple colors are updated. A workaround is to update the palettes only during blanking (horizontal or vertical), over multiple frames if necessary.

The bank can be set by doing a byte write to registers REG_PALBANK1 or REG_PALBANK0.

Special colors

There are two special colors used:

  • The first color of the palette bank ($400000) is the Reference color for the video output. It always has to be pure black ($8000) otherwise monitors won't be happy and other colors won't be displayed correctly.
  • The last color of the palette bank ($401FFE) is the Backdrop color, the color of the backmost layer on the screen. Caused by line buffers in NEO-B1 being cleared to $FFF (referencing the last color of the last palette).