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 / TURBOPAS / TURBUSER.BUG < prev    next >
Text File  |  2000-06-30  |  2KB  |  47 lines

  1. TURBUSER.BUG
  2.  
  3. This file contains instructions to correct an anomoly which exists in Turbo
  4. Pascal vers. 2.0 for CP/M-80.  The problem is that if you run Turbo in any
  5. CP/M user area other than 0, Turbo will force you to user 0 when you exit
  6. Turbo using the (Q)uit command.  Granted, this isn't the end of the world,
  7. but it becomes an annoyance after a while.  I don't like programs that dork
  8. with my default drive/user.  Install this fix, and your default user area
  9. will be left alone.        //Rodger Ellis - 03/18/85//
  10.  
  11. ---------------SUMMARY FOR THOSE WHO KNOW WHAT THEY'RE DOING---------------
  12.  
  13. This is a simple DDT session which changes five locations in the file
  14. TURBO.COM.
  15.  
  16.         BEFORE CHANGE                              AFTER CHANGE
  17.         -------------                              ------------
  18.         .                                          .
  19.         .                                          .
  20.         2051  MVI C,19                             2051  LDA 0004
  21.         2053  CALL 0005                            2054  NOP
  22.         .                                          2055  NOP
  23.         .                                          .
  24.                                                    .
  25.  
  26. --------------------------STEP-BY-STEP FOR NOVICES-------------------------
  27.  
  28.  
  29. 1.  Ensure you have DDT.COM and TURBO.COM on the default drive
  30.  
  31. 2.  At the A> prompt, run DDT and load TURBO.COM by typing DDT TURBO.COM<cr>
  32.  
  33. 3.  Type A2051<cr>
  34.  
  35. 4.  Type LDA 0004<cr>
  36.  
  37. 5.  Type NOP<cr>
  38.  
  39. 6.  Type NOP<cr>
  40.  
  41. 7.  Type .<cr>
  42.  
  43. 8.  Type ^C
  44.  
  45. 9.  Back at the A> prompt, type SAVE 119 TURBO.COM
  46.  
  47. ----------------------------------------------------------------------------