home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 2 / BBS in a box - Trilogy II.iso / AMUG Info / Apple / ResEdit 2.1.1 Examples / Libraries / LDEF.a next >
Encoding:
Text File  |  1991-07-10  |  436 b   |  24 lines  |  [TEXT/MPS ]

  1. ; COPYRIGHT (C) 1984-1990 Apple Computer,Inc.
  2. ; All rights reserved
  3. ;LDEF.a
  4.  
  5.  
  6.               BLANKS        ON
  7.               STRING        ASIS
  8.  
  9. StdLDEF    MAIN EXPORT 
  10.  
  11.     IMPORT DrawCell
  12.  
  13.          
  14.                BRA.S     @0             ; enter here
  15.  
  16.                DC.W      0       ; flags word
  17.                DC.B       'LDEF'             ; type
  18.                DC.W      0       ; ID
  19.                DC.W      0       ; version
  20. @0
  21.                JMP     DrawCell
  22.  
  23.         END 
  24.