Algorithm by: Makoto Matsumoto and Takuji Nishimura
Web site: http://www.math.keio.ac.jp/matumoto/emt.html
E-mail: <matumoto@math.keio.ac.jp>

Sample program by: S
E-mail: <scubed@frontiernet.net>

To use functions: Put "Rand.Inc" in "MAsm32\Include".
                  Add "include \masm32\include\rand.inc" to your programs.

Note: It is not essential that Randomize is called.  If Rand is
      called first, it will call Randomize with a default seed.
      This will result in the same numbers every time.  It is
      recommended that
      INVOKE GetTickCount
      INVOKE Randomize,eax
      is used.
