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 >
Text File  |  1988-04-10  |  585b  |  14 lines

  1.  
  2. /************************************************************************/
  3. /* Load palette registers from a table                                  */
  4. /* Which has BLACK and WHITE interchanged                               */
  5. /************************************************************************/
  6.  
  7. invert_B_n_W()
  8.         {
  9.                                         /* Reverse video palette        */
  10.         static  int     table[16] = {  15, 0, 2, 3, 4, 5, 6, 0,
  11.                                         8, 9,10,11,12,13,14, 0};
  12.         write_palette(table);
  13.         }
  14.