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

@ -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