home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 12 / 012.d81 / t.dosplus.boot < prev    next >
Text File  |  2022-08-26  |  2KB  |  127 lines

  1.  
  2.          **** DOSPLUS ****
  3.  
  4.  
  5.  
  6.  
  7. Written by: R.W. Kober
  8.             P.O. Box 181
  9.             Buffalo, TX  75831
  10.  
  11.  
  12.  
  13.  
  14.   DOSPLUS adds several features to the
  15.  
  16. C-64 WEDGE and DOS 5.1 that comes on
  17.  
  18. the TEST/DEMO disk. Here is a brief
  19.  
  20. description of what these added
  21.  
  22. features do, and why:
  23.  
  24.  
  25.    1. Entering @U or >U, followed by a
  26.  
  27. RETURN, will UN-NEW a BASIC program.
  28.  
  29. This will work even after a SYS 64738
  30.  
  31. has been entered.
  32.  
  33.  
  34.    2. Entering @* or >*, followed by a
  35.  
  36. RETURN will RESET the disk drive. This
  37.  
  38. will be verified by printing the disks
  39.  
  40. version of ROM to the screen.
  41.  
  42.  
  43.    3. With DOSPLUS resident in memory,
  44.  
  45. HEX or BINARY numbers may be entered
  46.  
  47. and will be accepted. Hex numbers are
  48.  
  49. preceeded with a '$', and BINARY with
  50.  
  51. a '%'. For example, if one enters
  52.  
  53. PRINT $C000, the computer responds
  54.  
  55. with 49152. Likewise, if one enters
  56.  
  57. PRINT %1111, the computer responds
  58.  
  59. with 15. HEX and BINARY numbers will
  60.  
  61. also work in a RUNning program. Both
  62.  
  63. of these lines will change the border
  64.  
  65. color to light blue:
  66.  
  67.  
  68.       10 POKE 53280,14
  69.       10 POKE $D020,%1110
  70.  
  71.  
  72. I wrote this addition as I began  to
  73.  
  74. program in ML in earnest, and was
  75.  
  76. constantly needing to convert from HEX
  77.  
  78. to decimal. I would look up a specific
  79.  
  80. location from within a monitor, and
  81.  
  82. then try to change it from BASIC with
  83.  
  84. a POKE statement. Converting easily
  85.  
  86. from HEX to decimal was necessary.
  87.  
  88.  
  89. This version of DOSPLUS resides in RAM
  90.  
  91. from 52000 ($CB20) to 53247 ($CFFF),
  92.  
  93. and uses 1248 Bytes of memory. All of
  94.  
  95. the original commands and features of
  96.  
  97. the DOS 5.1 as contained on the
  98.  
  99. TEST/DEMO disk are retained intact.
  100.  
  101.  Since DOSPLUS is ML, it is either
  102.  
  103. LOADed using ,8,1 or with a Basic
  104.  
  105. LOADer such as the one on this disk
  106.  
  107. called DOSPLUS LOADER.
  108.  
  109.  To create your own DOSPLUS (if you
  110.  
  111. can't copy machine-language files) I
  112.  
  113. have included DOSPLUS CREATOR.  By
  114.  
  115. LOADing and RUNning DOSPLUS CREATOR,
  116.  
  117. you can convert your own DOS 5.1 into
  118.  
  119. DOSPLUS.
  120.  
  121.  
  122. >Files used:  DOSPLUS CREATOR
  123.               DOSPLUS
  124.               DOSPLUS LOADER
  125.  
  126. --------------------------------------
  127.