home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 002.lha / stin10.asm < prev    next >
Assembly Source File  |  1986-05-05  |  1KB  |  49 lines

  1.  
  2. *  FILE: stin.asm                               August 11, 1986
  3. *
  4. *  Version: 1.0
  5. *
  6. *  By: Andrew Tuline             CIS: 70465,1223
  7. *      Vancouver, B.C.
  8. *
  9. * This file contains all the Commodore .i files to be linked with
  10. * my own file (stars.asm). This method should speed up assembling
  11. * of stars.asm dramatically. This file must be placed on the root
  12. * directory of the Amiga Assembler disk and assembled as follows:
  13. *
  14. * cd df1:include
  15. * :c/assem :stin.asm -o ram:stin.o -c w120000
  16. *
  17. *
  18.  
  19.          INCLUDE  "df1:include/exec/types.i"
  20.          INCLUDE  "df1:include/exec/funcdef.i"
  21.  
  22.          INCLUDE  "df1:include/intuition/intuition.i"
  23.  
  24. * I tried ACTIVATE!WINDOWCLOSE in stars.asm, but the assembler wouldn't
  25. * allow arithmetic operations on XREF values. Therefore ANDREWSGADGETS was
  26. * defined in this file.
  27.  
  28. ANDREWSGADGETS    equ ACTIVATE!WINDOWCLOSE!BACKDROP
  29. IDCMP_FLAGS       equ CLOSEWINDOW!RAWKEY
  30.  
  31.          XDEF     ANDREWSGADGETS
  32.          XDEF     IDCMP_FLAGS
  33.  
  34.          XDEF     ns_DefaultTitle
  35.          XDEF     nw_Title
  36.          XDEF     CLOSEWINDOW
  37.          XDEF     RAWKEY
  38.          XDEF     sc_RastPort
  39.          XDEF     sc_ViewPort
  40.          XDEF     im_Class
  41.          XDEF     MP_SIGBIT
  42.          XDEF     RP_JAM1
  43.          XDEF     CUSTOMSCREEN
  44.          XDEF     wd_UserPort
  45.          XDEF     WBENCHSCREEN
  46.  
  47.  
  48.    end
  49.