home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 220 / 220.d81 / t.htn < prev    next >
Text File  |  2022-08-26  |  3KB  |  109 lines

  1. u
  2.          YOUR HOME TOWER NEWS
  3.  
  4.            By Dave Moorman
  5.  
  6.  
  7.     I have had a few calls from C-128D
  8. owners who had a conflict between the
  9. built-in 1571 on device 8 and the
  10. LOADSTAR feature on 64HDriver.
  11.  
  12.     I have two possible fixes. The
  13. first will eliminate the 1571 from
  14. your working device list in 64HDriver.
  15. This is the easiest to accomplish.
  16.  
  17.  1. LOAD"64:*",15 but do not RUN
  18.  
  19.  2. Type in these lines:
  20.  
  21.     70 OPEN1,8,15,"U0>"+CHR$(16)
  22.     71 CLOSE1
  23.  
  24.  3. Type and RETURN:
  25.  
  26.     GOTO10000
  27.  
  28.  
  29.     This changes the 1571 to Device
  30. 16, which is out of 64HDriver's range.
  31. Now Device 8 is free for the Tower,
  32. and using LOADSTAR on the Tower.
  33.  
  34.     I realize that this does not help
  35. if you want to use the 1571 with the
  36. Tower. (You may want to put an inquiry
  37. with the above lines in the boot
  38. program.) I really wanted to be able
  39. to switch the 1571 to any otherwise
  40. unused drive number.
  41.  
  42.     However, in the process of polling
  43. the drives, the following C=DOS
  44. command is used:
  45.  
  46.   FORX=8TO15:OPEN1,X,15,"UI":CLOSE1:
  47.   NEXT
  48.  
  49.  The problem is that when the 1571 is
  50. changed to another device (9 - 15),
  51. this line effectively undoes the
  52. change.
  53.  
  54.     But there IS hope. You will have
  55. to DISSOLVE "begin.pkd" (in C:/64hdd/
  56. 64hdvr.d81).
  57.  
  58.     Er -- double darn! Lee Novak's
  59. Trio do not save to the Tower. It has
  60. to do with the way he searches for an
  61. existing file -- and the way Nick
  62. Copland emulated C=DOS. The three
  63. programs are on C:/utility.d81. Copy
  64. the program "begin.pkd" to a real disk
  65. and use "B.DISSOLVE*" to take it
  66. apart. You will save the results to a
  67. real disk, then copy the finished
  68. program back to C:/64hdd/64hdvr.d81.
  69.  
  70.     Ok, after dissolving "begin.pkd",
  71. you can edit "begin". There are two
  72. FOR-NEXT loops at the beginning of the
  73. program. Both are
  74.  
  75.            FOR X = 8 to 15
  76.  
  77.  Change the 15 to 13 in both loops.
  78. Use B.LINK* and B.PACK* to put
  79. "begin.pkd" back together and copy it
  80. back to C:/64hdd/64hdvr.d81.
  81.  
  82.     Now, device 8 can be put on device
  83. 14. The polling will never see it, and
  84. the Tower device 14 will remain
  85. disengaged -- which is just fine.
  86.  
  87.     Oh, yes! You will want to change
  88. those line in "64:*" to
  89.  
  90.            "U0>"+CHR$(14)"
  91.  
  92.     That should do it.
  93.  
  94.     If all this seems too daunting,
  95. drop me a note and $5, and I will send
  96. a disk with the latest updates to
  97. 64HDriver. As of this writing, the
  98. above IS the latest update!
  99.  
  100.  
  101.     Several noted that further
  102. tutorials for the Tower and 64HDriver
  103. would be nice. Please let me know what
  104. you want to see, what you need to
  105. know, and/or where you got stuck.
  106.  
  107.  DMM
  108.  
  109.  
  110.