home *** CD-ROM | disk | FTP | other *** search
/ Audio 4.94 - Over 11,000 Files / audio-11000.iso / msdos / sndbords / proaudio / mvdoc / fmfun.doc < prev    next >
Text File  |  1993-03-09  |  3KB  |  111 lines

  1. FM - TSR for FM Synthesis
  2.  
  3.  
  4. Syntax
  5.  
  6.     fm -i
  7.  
  8.         This installs the TSR
  9.  
  10.     fm -u
  11.  
  12.         This uninstalls the TSR
  13.  
  14.     bo
  15.     bf
  16.  
  17.         This turns on/off the "background" sound
  18.  
  19.     qo
  20.     qf
  21.  
  22.         This turns on/off the "queue"
  23.  
  24.     mm
  25.     mp
  26.  
  27.         This sets melodic/percussive mode
  28.  
  29.     i65
  30.  
  31.         This initializes the TSR and the chip
  32.  
  33.  
  34. Operation
  35.  
  36.     
  37. This program is used to provide "Adlib" (copyright/trademark Adlib
  38. something-or-other) functionality for programs using that format
  39. to play FM sounds.
  40.  
  41.     Basically, this format is a method for "queueing" notes
  42.     and setting "instrument sounds".  See "fm.doc" for information
  43.     on programming the TSR to accomplish this.
  44.  
  45. This program will also generate "random" notes, in the background,
  46. which can be interesting, pleasing, or weird.  
  47.  
  48.  
  49. Program Explanations
  50.  
  51. fm.com    - This program installs into interrupt 64h to provide the
  52.     queue services, and interrupt 08h (timer) for background
  53.     events.
  54.  
  55.     Use "-i" to install the TSR.
  56.     Use "-u" to uninstall the TSR.
  57.     Use "-s" to report installation status.
  58.  
  59. bo.com    - This program will turn on the "background" sounds.
  60. bf.com    - This program will turn off the "background" sounds.
  61.  
  62.     I use this (sometimes) when:
  63.  
  64.     playing a game without sound
  65.     programming late at night by myself
  66.  
  67.         these alleviate boredom, and sometimes provide
  68.         an interesting diversion
  69.  
  70.     executing a long process that may crash
  71.  
  72.         if the sounds continue, the system has not 
  73.         "halted", and may just have "echo off" or
  74.         needs the "mode" set...
  75.  
  76.     need a source of sound input for testing recording abilities
  77.  
  78.         I get sick of my own voice, or the CDROM is too slow
  79.  
  80. qo.com    - This program will turn "on" the queue processing
  81. qf.com    - This program will turn "off" the queue processing
  82.  
  83.     This process will "speed up" or "slow down" the hardware
  84.     timer (interrupt 08h).  When the queue is on, the timer
  85.     runs fast.
  86.  
  87.     Some "jukebox" programs do not reset the timer when they
  88.     stop playing, and if they are then "removed" from memory
  89.     the timer is running fast, so your DOS time is sped up.
  90.  
  91.     Use "qf" to reset the timer to normal speed before removing
  92.     the TSR, especially after using programs that require the TSR.
  93.  
  94. mm.com    - This program will set "melodic" mode.
  95. mp.com    - This program will set "percussive" mode.
  96.  
  97.     Use these programs to change the TSR and the chip to either
  98.     of the two modes.
  99.  
  100.     If "background" sounds are enabled, the "drum set" will be
  101.     heard after using "mp".
  102.  
  103. i65.com    - This program initializes the TSR and the chip.
  104.  
  105.     This will clear the queue and reset the chip, essentially
  106.     setting the state to that of load-time.
  107.  
  108.  
  109.  
  110.  
  111.