home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 035 / modex32.zip / MASKS.ASM < prev    next >
Assembly Source File  |  1994-08-30  |  450b  |  23 lines

  1.         .386p
  2.         locals
  3.         include pmc.inc
  4.  
  5. ; Mode X (320x240, 256 colors) masking values for
  6. ; functions that need them.
  7. ;
  8. ; (ykumanan)
  9. ;
  10.         @dseg
  11.  
  12.         public  LeftClipPlaneMask
  13.         public  RightClipPlaneMask
  14.  
  15. ; Plane masks for clipping left and right edges of rectangle.
  16. LeftClipPlaneMask       db      00fh,00eh,00ch,008h
  17. RightClipPlaneMask      db      00fh,001h,003h,007h
  18.  
  19.         ends
  20.  
  21.         end
  22.  
  23.