summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/rsp/vmudh.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/rsp/vmudh.h')
-rw-r--r--src/devices/cpu/rsp/vmudh.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/devices/cpu/rsp/vmudh.h b/src/devices/cpu/rsp/vmudh.h
deleted file mode 100644
index 71c3a38f4fb..00000000000
--- a/src/devices/cpu/rsp/vmudh.h
+++ /dev/null
@@ -1,10 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Tyler J. Stachecki,Ryan Holtz
-
-inline rsp_vec_t rsp_vmudh(rsp_vec_t vs, rsp_vec_t vt, rsp_vec_t *acc_md, rsp_vec_t *acc_hi)
-{
- *acc_md = _mm_mullo_epi16(vs, vt);
- *acc_hi = _mm_mulhi_epi16(vs, vt);
-
- return sclamp_acc_to_mid(*acc_md, *acc_hi);
-}