home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ZSYS / ZNODE-12 / I / RSX12.LBR / RSXCUST.DQX / RSXCUST.DXX
Text File  |  2000-06-30  |  2KB  |  35 lines

  1. ; This file normally holds customization equates for the RSX system.
  2. ; If desired these values may all be defined in RSXMAIN or RSXINIT,
  3. ; when this file can consist of only the NODRIVE equate.
  4. ;
  5. ; customise the @RSX value for the application.  See BDOS call lists
  6. ; in RSXMAST guidance.  Try to avoid values that create conflicts
  7. @RSX    equ    100;    for demo testing.  The master intercept value
  8. ;
  9. @RSXX    equ    0;    This is an extra intercept, outside the range
  10. ;            below.  Set 0 if not used
  11. @RSXY    equ    0;    This is a second extra intercept, outside the
  12. ;            range below.  Set 0 if not used
  13. ;
  14. @RSXLO    equ    @RSX;    This and @RSXHI can specify a range of BDOS
  15. @RSXHI    equ    @RSX;    calls to intercept.  Only @RSX can use the
  16. ;            special parameters -1,0,+1.  Others are not
  17. ;            restricted.  Set both to @RSX if no range is
  18. ;            required.
  19. ;
  20. ; Controls for bios driver visibility.
  21. nodrive    equ    true;    TRUE prevents any alteration of the BIOS
  22. ;            vector at location 1.  If true then DRIVER
  23. ;            MUST be false.  This is for systems that
  24. ;            create only BDOS intercepts, and do not
  25. ;            alter the bios in any way.
  26. driver    equ    false;    TRUE installs drivers visible to DOS
  27. ;            FALSE makes new BIOS drivers visible only to
  28. ;                an application program
  29. ;            the value of "driver" initializes "chkflg"
  30. ;            which is then user patchable.
  31. ;
  32. ; Experimental equate.  True not checked out yet
  33. multidrv equ    false;        true to allow multiple drivers
  34. ;                visible to BDOS.  Care needed.
  35. ╗B