home *** CD-ROM | disk | FTP | other *** search
/ The Party 1994: Try This At Home / disk_image.bin / source / gallery / subdirs.exe / TEXTURE / W_PIC4.ASM < prev    next >
Assembly Source File  |  1993-07-21  |  260b  |  18 lines

  1. ; Picture 4 texture
  2.  
  3.         IDEAL
  4.         MODEL Small, Pascal
  5.         RADIX 10
  6.         P286
  7.  
  8. MACRO   TEXTURE  name
  9.         FARDATA S_&name
  10. PUBLIC W_&name
  11. W_&name:
  12.         INCLUDE "w_&name.inc"
  13.         ENDM
  14.  
  15.         TEXTURE  Pic4
  16.  
  17.         END
  18.