home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1 / HamRadio.cdr / tech / design2 / readme.doc < prev    next >
Text File  |  1986-03-10  |  2KB  |  45 lines

  1.        README.DOC for the simple bandpass filters programs
  2.  
  3. The following files are on this disk:
  4.  
  5. BPFIBM.ASC  The bandpass filters program configured for BASIC,
  6.             BASICA or GWBASIC on the IBM PC and compatibles.
  7.  
  8. BPFKPRO.ASC The bandpass filters program configured for MBASIC
  9.             on all Kaypro CP/M computers (and any other CP/M
  10.             computer using ADM-3 escape codes).
  11.  
  12. BPFZEN.ASC  The bandpass filters program configured for the
  13.             Heath/Zenith Z-100 series computers and the H89 using
  14.             CP/M or any other computer using the H/Z-19 escape
  15.             sequences. (BPFIBM will work on the Z-100 in ZDOS/MS-DOS)
  16.  
  17. BPF.ASC     The bandpass filters program without a screen driver.
  18.  
  19. *.DVR       Screen driver programs for various computers that
  20.            use various versions of Microsoft BASIC
  21.  
  22.   The files on this disk are in ASCII form so they can be read by the
  23. greatest number of versions of BASIC. In order to make the program you
  24. will use load faster you should save it in "tokenized" form.
  25.   An example follows of how to load and save the BPF program on an IBM PC
  26. or compatible with a basic "work disk" in drive A: and this disk in drive B:
  27.  
  28. A>BASICA  <-- get in to BASIC
  29.  
  30. (basic signon message here)
  31.  
  32. OK
  33. LOAD "B:BPFIBM.ASC"  <-- loads the selected ascii program from this disk
  34.  
  35. OK
  36. SAVE "A:BPF.BAS"   <-- saves the program as BPF.BAS on your work disk
  37.  
  38.  
  39.   To use a screen driver, merge the required driver with BPF.ASC
  40. to create a version of BPF.BAS for your computer. You can edit the
  41. screen driver program that is closest to your computer's configuration
  42. to perform the required functions as long as the starting line
  43. numbers of each subroutine do not change and each subroutine ends
  44. with a RETURN statement.
  45.