summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/rsp/vmov.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/rsp/vmov.h')
-rw-r--r--src/devices/cpu/rsp/vmov.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/devices/cpu/rsp/vmov.h b/src/devices/cpu/rsp/vmov.h
deleted file mode 100644
index 59e02e8b118..00000000000
--- a/src/devices/cpu/rsp/vmov.h
+++ /dev/null
@@ -1,9 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Tyler J. Stachecki,Ryan Holtz
-
-inline rsp_vec_t vec_vmov(uint32_t src, uint32_t e, uint32_t dest, uint32_t de)
-{
- // Get the element from VT and write out the upper part of the result.
- m_v[dest].s[de & 0x7] = m_v[src].s[e & 0x7];
- return vec_load_unshuffled_operand(m_v[dest].s);
-}