home *** CD-ROM | disk | FTP | other *** search
- PROFILE FILE
- * MIDIEX Bulk dump profile
- *
- BRAND "Big Noise"
- INSTRUMENT "MIDIEX"
- KIND PATCH
- FILEEXT "MDX"
- SIZE 128002
- MIDI 1
- *
- * Start of the MACRO to use for transmitting the DATA
- *
- TRANSMIT
- YESNO V1, " Are You Ready to Send the Data? "
- IFQUIT V1, 0
- IFQUIT 0, TOTALREC
- MESSAGE SHOW "Sending Data ..."
- VINIT V2, 0
- LOOP TOTALREC
- BGET V1, V2
- SEND 1, V1
- VADD V2, V2, 1
- ENDLOOP
- TELL " Finished! "
- ENDMACRO
- *
- * Start of the MACRO to use for Receiving the DATA
- *
- RECEIVE
- YESNO V0, " Are You Ready ? "
- IFQUIT V0, 0
- CLEAR ALL
- MESSAGE SHOW "Waiting for Start of Exclusive Byte"
- GET 1, HF0, WAIT
- BSET HF0, 0
- MESSAGE SHOW "Getting SYSEX Data ... Press Cancel when Done"
- RDATA 0, 127999, 1, V
- ENDMACRO
- *
- * Start of the MACRO to use in saving the DATA to disk.
- *
- DISKSAVE
- IFQUIT TOTALREC, 0
- DOPEN W, "MDX"
- MESSAGE SHOW "Saving Data ..."
- DWRITE TOTALREC, 0
- DCLOSE
- ENDMACRO
- *
- * Start of the MACRO to use for Loading the DATA from disk
- *
- DISKLOAD
- CLEAR ALL
- DOPEN R, "MDX"
- MESSAGE SHOW "Loading Data ..."
- DREAD TOTALREC, 0, V
- DCLOSE
- ENDMACRO
- VIEW
- PATCH TITLE "Bulk Dump"
- PATCH OFFSET 0
- PATCH LENGTH 128000
- PATCH NUMBER 1
- NAME OFFSET -1
- NAME LENGTH -1
- NAME XFORM 0
- *
- * Start of the MACRO to use in sending a single Patch.
- *
- TRANSMIT
- TELL "Use Bank Load to Send"
- ENDMACRO
- *
- * Start of the MACRO to use in getting a single Patch.
- *
- RECEIVE
- CLEAR ALL
- TELL "Use Get Bank to Receive"
- ENDMACRO
- VIEWEND
- *
- *End of Profile
- *
-