home *** CD-ROM | disk | FTP | other *** search
/ Set of Apple II Hard Drive Images / pdoshard.hdv / SLINK / SLINK.bas < prev    next >
BASIC Source File  |  2020-08-13  |  3KB  |  59 lines

  1. 10  REM * S-LINK DRIVER - INSTRUCTIONS
  2. 20  REM * AND SLOT SELECTOR (DEFAULT=6/2)
  3. 30  REM * (C) BG UNIVERSAL SOFTWARE, INC.
  4. 40 :
  5. 80 N1 = 20:N2 = 22
  6. 90 N = N1
  7. 100  HOME : FOR I = 1 TO N
  8. 110  READ A$
  9. 120  IF  LEN(A$) = 40  THEN  PRINT A$; CHR$(8): GOTO 140
  10. 130  PRINT A$
  11. 140  NEXT : IF N < >N1  THEN  GET A$: RESTORE : GOTO 90
  12. 150  PRINT "[Enter 0 to see an example]:";
  13. 160  GET S$: IF S$ <"0"  OR S$ >"7"  THEN  PRINT  CHR$(7);: GOTO 160
  14. 170  IF S$ = "0"  THEN N = N2: GOTO 100
  15. 180  PRINT S$: PRINT : PRINT "Serial Card slot# 1-7 [0=AUTODETECT]:";
  16. 190  GET A$: IF A$ <"0"  OR A$ >"7"  THEN  PRINT  CHR$(7);: GOTO 190
  17. 200  POKE 24574, VAL(S$) +192
  18. 210  POKE 24575, VAL(A$) +192
  19. 230  HOME 
  20. 240  PRINT  CHR$(4)"-SLINK.DRIVER"
  21. 500  DATA  "S-LINK ProDOS Disk Driver"
  22. 510  DATA  "----------------------------------------"
  23. 520  DATA  "After installation of this driver you"
  24. 530  DATA  "will have one or two additional disk"
  25. 540  DATA  "drives. Their actual data is located on"
  26. 550  DATA  "the disk drive(s) of another Apple II"
  27. 560  DATA  "(or emulator) which is connected via"
  28. 570  DATA  "serial interface."
  29. 580  DATA  "NOTE THAT THE S-LINK DRIVER WILL REPLACE"
  30. 590  DATA THE DISK ][ DRIVER AND YOUR 5.25" DISK
  31. 600  DATA  "DRIVE(S) WON'T BE ACCESSIBLE!"
  32. 602  DATA  "IF YOU NEED DISK ][ -> BRUN SLINK.8000"
  33. 610  DATA  "Now you have to specify the slot# which"
  34. 620  DATA  "will represent the new disk(s). The real"
  35. 630  DATA  "disk card, installed on the Apple II,"
  36. 640  DATA  "must be on the same slot. You can also"
  37. 650  DATA  "install the S-LINK driver for 2 or more"
  38. 660  DATA  "slots.",
  39. 670  DATA  "Slot# for the S-LINKed disk(s) 1-7?"
  40. 800  DATA  "S-LINK : Example"
  41. 810  DATA  "----------------------------------------"
  42. 820  DATA If you have Apple //e with 3.5" drive on
  43. 830  DATA  "5th slot and hard disk on slot 7 and you"
  44. 840  DATA  "wish to use them from a PC running Apple"
  45. 850  DATA  "emulator, follow the instructions below:"
  46. 860  DATA  "(1) Connect the PC and //e with a null"
  47. 870  DATA  "modem cable and choose equal serial port"
  48. 880  DATA  "settings"
  49. 890  DATA  "(2) Start S-LINK SERVER on the //e"
  50. 900  DATA  "(3) Configure the emulator with a serial"
  51. 910  DATA  "card and one or more hard disk drive(s)"
  52. 920  DATA  "installed on slot 1, 2, 4, or 6"
  53. 930  DATA  "(4) Run S-LINK Driver (this program) and"
  54. 940  DATA enter "5" for the slot#
  55. 950  DATA (5) Run S-LINK again and enter "7" for
  56. 960  DATA  "slot#",
  57. 970  DATA  "Now you can enter CATALOG,S5 and read"
  58. 980  DATA the catalog of a 3.5" diskette...,
  59. 990  DATA  "[Press any key]"