home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 1 / 001.d81 / t.bsave < prev    next >
Text File  |  2022-08-26  |  1KB  |  64 lines

  1.                 BSAVE
  2.                 =====
  3.  
  4. Written by:  Joel Ellis Rea
  5.  
  6.  
  7.    BSAVE is a BASIC program that
  8.  
  9. allows you to save a range of memory
  10.  
  11. into a PRG file.
  12.  
  13.    It can be loaded back into the
  14.  
  15. same place by a LOAD"name",8,1 com-
  16.  
  17. mand.  By this means, bitmap and text
  18.  
  19. screens, arrays, and (of course) ma-
  20.  
  21. chine language programs can be copied
  22.  
  23. from one disk to another.
  24.  
  25.  
  26.    To use BSAVE, you must know the be-
  27.  
  28. ginning and ending addresses of the
  29.  
  30. range of memory you wish to save.  You
  31.  
  32. may specify these addresses in decimal
  33.  
  34. or hexadecimal.  Precede hexadecimal
  35.  
  36. numbers with a dollar sign ($).
  37.  
  38.  
  39.    Then, specify the file name to save
  40.  
  41. it as, and the unit number of the de-
  42.  
  43. vice you want (1=tape, 8=disk).  BSAVE
  44.  
  45. will then perform the save, and report
  46.  
  47. the number of blocks the file should
  48.  
  49. take up.
  50.  
  51.  
  52.    For your information, here are a
  53.  
  54. few beginning and end addresses:
  55.  
  56.  
  57.    Program                   Addresses
  58.  
  59.    DOS 5.1 ("The Wedge")   $CC00-$D000
  60.  
  61.    ROUTINES (LOADSTAR's)   $C000-$CC00
  62.  
  63. --------------------------------------
  64.