home *** CD-ROM | disk | FTP | other *** search
/ ftp.whtech.com / ftp.whtech.com.tar / ftp.whtech.com / club100 / pg / pgnode / node1 / floprd.100 < prev    next >
Text File  |  2006-10-19  |  2KB  |  45 lines

  1. ERRATA for M100/102 only.
  2. -------------------------
  3. Many Model 100/102 users have come across a conflict when trying to load
  4. or use RAMDSK.CO with FLOPPY (Tandy's TDD2 disk manager) installed.  Go into
  5. BASIC and PRINT MAXRAM.  If MAXRAM is 60000 then FLOPPY is installed.  The
  6. following instructions will convert FLOPPY to FLOPP2.CO and permit
  7. RAMDSK.CO to be used when needed.
  8.  
  9. You cannot simply rename FLOPPY to FLOPP2.CO.  You have to convert it,
  10. as follows:
  11.  
  12. 1) With FLOPPY uninstalled, boot FLOPPY as usual (see TDD2 instruction manual).
  13.  
  14. 2) Goto BASIC and run this program:
  15.  
  16.  10 POKE 62116,154:POKE 62117,249
  17.  20 POKE 62118,0
  18.  30 SAVEM"FLOPP2",60003,62700,60003
  19.  
  20. 3) FLOPP2.CO should be on the menu but before you use it, run FREMEM.BA to get
  21. rid of FLOPPY (use FLOPP2.CO to load FREMEM.BA from disk).
  22.  
  23. 4) After running FREMEM and uninstalling FLOPPY you can kill FREMEM.BA and
  24. begin to use FLOPP2.CO exactly as you would use FLOPPY.  Save FLOPP2.CO to
  25. the Datapac for backup.
  26.  
  27. 5) RAMDSK.CO can now be loaded or used as needed.
  28.  
  29. 6) With RAMDSK.CO and FLOPP2.CO in RAM, here is a BASIC utility that will
  30. allow you to select between them.
  31.  
  32. 0 REM DISK.BA (C) 1990 BY P.GLOBMAN
  33. 1 CLS:PRINT@50,"1 - FLOPPY DISK"
  34. 2 PRINT@90,"2 - NODE RAMDISK"
  35. 3 PRINT@170," Esc/Select =>":X$=INKEY$
  36. 4 IFX$="1"THENCLEAR99,60003:RUNM"FLOPP2
  37. 5 IFX$="2"THENCLEAR99,61681:RUNM"RAMDSK
  38. 6 IFX$=CHR$(27)THENMENUELSE3
  39.  
  40. This program can also be used with the original FLOPPY.CO (TDD1) if line 4 is
  41. changed to:
  42.  
  43. 4 IFX$="1"THENCLEAR99,59400:RUNM"FLOPPY
  44.  
  45.