From 44d3d5ece0a53d5316a2ccc9898b79992d81fef7 Mon Sep 17 00:00:00 2001 From: Richard Date: Sat, 22 Jan 2022 22:27:01 +0000 Subject: update --- BID-rework/bussing.udo | 62 -------------------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 BID-rework/bussing.udo (limited to 'BID-rework/bussing.udo') diff --git a/BID-rework/bussing.udo b/BID-rework/bussing.udo deleted file mode 100644 index 78755ce..0000000 --- a/BID-rework/bussing.udo +++ /dev/null @@ -1,62 +0,0 @@ -#ifndef UDO_BUSSING -#define UDO_BUSSING ## - - -/* - Get the stereo L and R names for a singular bus name - - SnameL, SnameR bus_name Sbus - - SnameL left bus identifier - SnameR right bus identifier - - Sbus bus name -*/ -opcode bus_name, SS, S - Sbus xin - xout sprintf("%sL", Sbus), sprintf("%sR", Sbus) -endop - - -/* - Mix to a stereo bus - - bus_mix Sbus, aL, aR - - Sbus bus name - aL left channel - aR right channel -*/ -opcode bus_mix, 0, Saa - Sbus, aL, aR xin - SbusL, SbusR bus_name Sbus - chnmix aL, SbusL - chnmix aR, SbusR -endop - - - -/* - Read from a stereo bus, and then clear the bus - - aL, aR bus_read Sbus - - aL left channel - aR right channel - - Sbus bus name -*/ -opcode bus_read, aa, S - Sbus xin - SbusL, SbusR bus_name Sbus - aL chnget SbusL - aR chnget SbusR - chnclear SbusL - chnclear SbusR - xout aL, aR -endop - - - - -#end -- cgit v1.2.3