add dummy asm implementations

This commit is contained in:
5684185+vsariola@users.noreply.github.com
2025-12-28 18:19:06 +02:00
parent 5d354ec49d
commit e4f5418909
2 changed files with 28 additions and 0 deletions

View File

@ -198,6 +198,22 @@ su_op_filter_skipneghighpass:
{{end}}
{{- if .HasOp "eq"}}
;-------------------------------------------------------------------------------
; EQ opcode: perform low/high/band-pass/notch etc. filtering on the signal
;-------------------------------------------------------------------------------
; Mono: x -> filtered(x)
; Stereo: l r -> filtered(l) filtered(r)
;-------------------------------------------------------------------------------
{{.Func "su_op_eq" "Opcode"}}
lodsb ; load the flags to al
{{- if .Stereo "eq"}}
{{.Call "su_effects_stereohelper"}}
{{- end}}
ret
{{end}}
{{- if .HasOp "clip"}}
;-------------------------------------------------------------------------------
; CLIP opcode: clips the signal into [-1,1] range

View File

@ -203,6 +203,18 @@
{{end}}
{{- if .HasOp "eq"}}
;;-------------------------------------------------------------------------------
;; EQ opcode: perform low/high/band-pass/notch etc. filtering on the signal
;;-------------------------------------------------------------------------------
;; Mono: x -> eq(x)
;; Stereo: l r -> eq(l) eq(r)
;;-------------------------------------------------------------------------------
(func $su_op_eq (param $stereo i32)
)
{{end}}
{{- if .HasOp "clip"}}
;;-------------------------------------------------------------------------------
;; CLIP opcode: clips the signal into [-1,1] range