home *** CD-ROM | disk | FTP | other *** search
/ 8bitfiles.net/archives / archives.tar / archives / genie-commodore-file-library / C128CPM / MMPLAY.ARC / DEMO.MMF < prev    next >
Encoding:
Text File  |  1993-03-16  |  779 b   |  31 lines

  1. ;-----------------------------------------------------------------
  2. ;Mega Media Demo 1.0
  3.  
  4. ;by Steve Goldsmith 03/16/93
  5.  
  6. ;Display MMPLAY.PCX, play intro and run JAM.MMF
  7. ;-----------------------------------------------------------------
  8.  
  9. Chain jam      ;run this .mmf after playing sequences
  10.  
  11. ViewPCX mmplay ;view 1 bit pcx file before playing sound sequences
  12.  
  13. LoadZBF        ;load zbf files to play
  14.  
  15.   synth2       ;4 bit cool synth sequence
  16.   mega         ;4 bit voice
  17.   media        ;4 bit voice
  18.   demo         ;4 bit voice
  19.  
  20. End            ;end of load block
  21.  
  22. PlayZBF        ;play zbf sequences
  23.  
  24.   synth2 synth2 synth2 synth2
  25.   mega mega mega mega rest mega
  26.   media rest media
  27.   demo
  28.   synth2 synth2 synth2 synth2
  29.  
  30. End            ;end of play block
  31.