mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-11-07 13:30:06 -05:00
Add ld10k1 tool
Added ld10k1 tool by Peter Zubaj.
This commit is contained in:
parent
37104ebf62
commit
2df1aa7c20
98 changed files with 19970 additions and 1 deletions
30
ld10k1/setup/effects/fxbus.asm
Normal file
30
ld10k1/setup/effects/fxbus.asm
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
name "FXBUS"
|
||||
include "emu_constants.asm"
|
||||
|
||||
;; From alsa driver pci/emu10k1/emufx.c _volume_add
|
||||
|
||||
pcm_l io
|
||||
pcm_r io
|
||||
pcm_lr io
|
||||
pcm_rr io
|
||||
midi_l io
|
||||
midi_r io
|
||||
pcm_c io
|
||||
pcm_lf io
|
||||
spdif_l io
|
||||
spdif_r io
|
||||
|
||||
;; Process FX Buses
|
||||
|
||||
macints pcm_l, C_0, pcm_l, C_4
|
||||
macints pcm_r, C_0, pcm_r, C_4
|
||||
macints pcm_lr, C_0, pcm_lr, C_4
|
||||
macints pcm_rr, C_0, pcm_rr, C_4
|
||||
macints midi_l, C_0, midi_l, C_4
|
||||
macints midi_r, C_0, midi_r, C_4
|
||||
macints pcm_c, C_0, pcm_c, C_4
|
||||
macints pcm_lf, C_0, pcm_lf, C_4
|
||||
macints spdif_l, C_0, spdif_l, C_4
|
||||
macints spdif_r, C_0, spdif_r, C_4
|
||||
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue