mirror of
https://github.com/n64dev/cen64.git
synced 2025-04-02 10:31:54 -04:00
15 lines
324 B
C
15 lines
324 B
C
//
|
|
// arch/arm/rsp/vnor.h
|
|
//
|
|
// This file is subject to the terms and conditions defined in
|
|
// 'LICENSE', which is part of this source code package.
|
|
//
|
|
|
|
#include "common.h"
|
|
#include <arm_neon.h>
|
|
|
|
static inline uint16x8_t rsp_vnor(
|
|
uint16x8_t vs, uint16x8_t vt, uint16x8_t zero) {
|
|
return vmvnq_u16(vorrq_u16(vs, vt));
|
|
}
|
|
|