diff options
Diffstat (limited to 'src/devices/cpu/rsp/vxor.h')
-rw-r--r-- | src/devices/cpu/rsp/vxor.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/devices/cpu/rsp/vxor.h b/src/devices/cpu/rsp/vxor.h deleted file mode 100644 index 9f7f62853c5..00000000000 --- a/src/devices/cpu/rsp/vxor.h +++ /dev/null @@ -1,10 +0,0 @@ -// license:BSD-3-Clause -// copyright-holders:Tyler J. Stachecki,Ryan Holtz - -inline rsp_vec_t vec_vxor_vnxor(uint32_t iw, rsp_vec_t vs, rsp_vec_t vt) -{ - rsp_vec_t vmask = _mm_load_si128((rsp_vec_t *) m_vec_helpers.logic_mask[iw & 0x1]); - - rsp_vec_t vd = _mm_xor_si128(vs, vt); - return _mm_xor_si128(vd, vmask); -} |