home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sound Sensations!
/
sound_sensations.iso
/
miditool
/
mqupdate
/
proteus.mbt
< prev
next >
Wrap
Text File
|
1989-12-26
|
1KB
|
26 lines
;=============================================================================
; This example illustrates how to upload all of the presets
; from a Proteus
;
; (c) Copyright 1989 by DMA Software
; All rights reserved
;=============================================================================
;
; Upload all (64) factory presets from Proteus
;
flushbuffer ;prepare to receive data
sysex 0x18 0x04 0x00 0x00 0x7E 0x7F 0xF7 ;request factory presets
timeout 5 ;timeout if no data in 5 seconds
receivefile e:factory.pxr 64 ;save all presets in file
;note that this statement specifies
;64 sysex units to be saved
;
; Upload all (64) user presets from Proteus
;
flushbuffer ;prepare to receive data
sysex 0x18 0x04 0x00 0x00 0x7F 0x7F 0xF7 ;request user presets
timeout 5
receivefile e:user.pxr 64 ;timeout if no data in 5 seconds
;note that this statement specifies
;64 sysex units to be saved