home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff284.lzh / Dme / src / rexx / rxsupplib.i < prev    next >
Text File  |  1989-11-27  |  1KB  |  47 lines

  1. * === rxsupplib.i ======================================================
  2. *
  3. * Copyright (c) 1986, 1987 by William S. Hawes (All Rights Reserved)
  4. *
  5. * ======================================================================
  6. * Include file for Rexx Support Library
  7.  
  8.          IFND     REXX_RXSUPPLIB_I
  9. REXX_RXSUPPLIB_I  SET   1
  10.  
  11.          IFND     REXX_STORAGE_I
  12.          INCLUDE  "rexx/storage.i"
  13.          ENDC
  14.  
  15.          IFND     REXX_RXSLIB_I
  16.          INCLUDE  "rexx/rxslib.i"
  17.          ENDC
  18.  
  19. * Structure definition for the Rexx Support Library
  20.          STRUCTURE RexxSupport,LIB_SIZE
  21.          APTR     rs_SysBase           ; EXEC base
  22.          APTR     rs_REXXBase          ; Rexx System Library base
  23.          LONG     rs_SegList           ; library seglist
  24.          LABEL    rs_SIZEOF
  25.  
  26. RSNAME   MACRO
  27.          dc.b     'rexxsupport.library',0
  28.          ENDM
  29.  
  30. RSID     MACRO
  31.          dc.b     'rexxsupport 1.0 (22 AUG 87)',13,10,0
  32.          ENDM
  33.  
  34. RSVERS   EQU   2
  35. RSREV    EQU   1
  36.  
  37. * Various system constants
  38. MemList     EQU   $142                 ; Memory list
  39. DeviceList  EQU   $15E                 ; Devices list
  40. LibList     EQU   $17A                 ; Libraries list
  41. PortList    EQU   $188                 ; Ports list
  42. ReadyList   EQU   $196                 ; Ready Tasks
  43. WaitList    EQU   $1A4                 ; Waiting Tasks
  44.  
  45.          ENDC
  46.