mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-27 11:50:29 +00:00
10 lines
134 B
C++
10 lines
134 B
C++
#include <arm_neon.h>
|
|
#include <stdint.h>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
uint32x4_t x;
|
|
x=veorq_u32(x,x);
|
|
return 0;
|
|
}
|