home *** CD-ROM | disk | FTP | other *** search
- ;=============================================================================
- ; This example illustrates some general MIDI uses of MIDI Batch
- ;
- ; (c) Copyright 1989 by DMA Software
- ; All rights reserved
- ;=============================================================================
- noteon 0 48 64 ;On ch 1, turn on note 48 at vel 64
- delay 1500 ;Wait about 1.5 sec
- pitchbend 0 0x1000 ;Pitch bend down half way
- delay 1500 ;Wait about 1.5 sec
- pitchbend 0 0x2000 ;Return pitch bend to center
- delay 1500 ;Wait about 1.5 sec
- noteoff 0 48 64 ;turn off note 48
- delay 500 ;Wait about .5 sec
- noteon 0 59 64 ;On ch 1, turn on note 59 at vel 64
- controlchange 0 64 127 ;On ch 1, turn on sustain controller
- noteoff 0 59 64 ;Turn off note 59
- delay 1500 ;Wait about 1.5 sec
- controlchange 0 64 0 ;Turn off sustain controller
-