al - Audio Library Functions gDP - DP GBI Macros gdSP - General GBI Macros gSP - SP GBI Macros gt - Turbo Microcode RDP gu - Graphics Utilities Math - Math Functions nuSys - NuSystem os - N64 Operating System sp - Sprite Library Functions uh - Host to Target IO 64DD - N64 Disk Drive
|
n_alSeqpSendMidiFormat#include <n_libaudio.h> void n_alSeqpSendMidi(N_ALSeqPlayer *seqp, long ticks, u8 status, u8 byte1, u8 byte2); Arguments
This function is available in the n_audio library. It sends a MIDI message to the sequence player. You can use it to trigger notes not in the sequence, add controller information in real time, or otherwise change the performance of a sequence. You can also use it as an alternative to the following function calls: Only channel voice messages are supported. See the MIDI 1.0 specification or any of the various World Wide Web MIDI pages for more information. Notes The status byte contains the message type in the high nibble and the channel number in the low nibble. The next bytes are the MIDI data, which is determined by the message type.
|