cen64/arch/x86_64/rsp/gcc/vnand.s
Derek "Turtle" Roe 8b89df2fdc See long description
Replaced all references to simulation with emulation
Updated copyright year
Updated .gitignore to reduce chances of random files being uploaded to
the repo
Added .gitattributes to normalize all text files, and to ignore binary
files (which includes the logo and the NEC PDF)
2015-07-01 18:44:21 -05:00

42 lines
723 B
ArmAsm

//
// arch/x86_64/rsp/gcc/vnand.s
//
// CEN64: Cycle-Accurate Nintendo 64 Emulator.
// Copyright (C) 2015, Tyler J. Stachecki.
//
// This file is subject to the terms and conditions defined in
// 'LICENSE', which is part of this source code package.
//
.include "rsp/gcc/defs.h"
.text
.ifdef __MINGW__
.globl RSP_VNAND
.def RSP_VNAND; .scl 2; .type 32; .endef
.seh_proc RSP_VNAND
.ifndef __VECTORCALL__
RSP_VNAND:
movdqa (%r8), %xmm0
movdqa (%r9), %xmm1
pxor %xmm2, %xmm2
.endif
.else
.global RSP_VNAND
.type RSP_VMRG, @function
RSP_VNAND:
.endif
pcmpeqd %xmm2, %xmm2
pand %xmm1, %xmm0
pxor %xmm2, %xmm0
movdqa %xmm0, acc_lo
retq
.ifdef __MINGW__
.seh_endproc
.else
.size RSP_VNAND,.-RSP_VNAND
.endif