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 / CPM / BBSING / MBBS / MBBS45B.LBR / MBBSCUST.AQM / MBBSCUST.ASM
Assembly Source File  |  2000-06-30  |  1KB  |  41 lines

  1. ;
  2. ; MBBSCUST.ASM -- MBBS Customization overlay
  3. ;
  4. ; This file defines locations begining at 103H that are PEEKed
  5. ; by MBBS to determine where various files are located.
  6. ;
  7. ; Use ASM to assemble this file after editing into a .HEX file
  8. ; and then use MLOAD to "customize" a MBBS version 4.0 program.
  9. ;
  10. ; Example: "MLOAD MBBS.COM=MBBS.COM,MBBSCUST.HEX"
  11. ;
  12.     ORG    103H
  13. ;
  14. BBSDSK:    DB    'A'    ; Disk where .BBS files reside *
  15. BBSUSR:    DB    0    ; User for ALL .BBS files
  16. ;
  17. BYEDSK:    DB    'A'    ; Disk where BYE.COM file located
  18. BYEUSR:    DB    0    ; User for BYE.COM
  19. ;
  20. LOGDSK:    DB    'A'    ; Disk where LOGIN.COM file located
  21. LOGUSR:    DB    0    ; User for LOGIN.COM
  22. ;
  23. ; * All .BBS files on BBSDSK except for the following:
  24. ;
  25. MSGDSK:    DB    'A'    ; Disk for MESSAGES.BBS
  26. SUMDSK:    DB    'A'    ; Disk for SUMMARY.BBS
  27. USRDSK:    DB    'A'    ; Disk for USERS.BBS
  28. CALDSK:    DB    'A'    ; Disk for CALLERS.BBS
  29. ;
  30. ; The following values are used by MBBSUT only:
  31. ;
  32. ARCDSK:    DB    'B'    ; Disk for .ARC (archive) files
  33. BAKDSK:    DB    ' '    ; (Reserved location)
  34. WRKDSK:    DB    'B'    ; Disk for .WRK (work) files
  35. ;
  36. COMDSK:    DB    'A'    ; Disk where MBBS.COM file located
  37. COMUSR:    DB    0    ; User for MBBS.COM
  38. ;
  39.     END        ; That's it! (For now)
  40. ;
  41.