home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
C-ASM_VI.ARJ
/
PROGC.ZIP
/
PROGC006.C
< prev
next >
Wrap
Text File
|
1988-04-10
|
585b
|
14 lines
/************************************************************************/
/* Load palette registers from a table */
/* Which has BLACK and WHITE interchanged */
/************************************************************************/
invert_B_n_W()
{
/* Reverse video palette */
static int table[16] = { 15, 0, 2, 3, 4, 5, 6, 0,
8, 9,10,11,12,13,14, 0};
write_palette(table);
}