home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xibm.zip / mpel / mpelALU.c < prev    next >
Text File  |  1991-12-12  |  159b  |  8 lines

  1. unsigned short mpelMaskXlate[256];
  2. void mpelInitPlaneMask()
  3. {
  4.   register int i;
  5.   for (i = 0; i < 256; i++)
  6.     mpelMaskXlate[i] = ((unsigned char)~i) << 8;
  7. }
  8.