aboutsummaryrefslogtreecommitdiff
path: root/BID-rework/bussing.udo
diff options
context:
space:
mode:
authorRichard <q@1bpm.net>2022-01-22 22:27:01 +0000
committerRichard <q@1bpm.net>2022-01-22 22:27:01 +0000
commit44d3d5ece0a53d5316a2ccc9898b79992d81fef7 (patch)
treeb456d3007f3e8c5a122f0dc286192e8eaf90a1b1 /BID-rework/bussing.udo
parent5afc582483c0658f3c8bac9cd854a7905e8d88c7 (diff)
downloadcsd-unfixedbugs1-44d3d5ece0a53d5316a2ccc9898b79992d81fef7.tar.gz
csd-unfixedbugs1-44d3d5ece0a53d5316a2ccc9898b79992d81fef7.tar.bz2
csd-unfixedbugs1-44d3d5ece0a53d5316a2ccc9898b79992d81fef7.zip
update
Diffstat (limited to 'BID-rework/bussing.udo')
-rw-r--r--BID-rework/bussing.udo62
1 files changed, 0 insertions, 62 deletions
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