mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-27 11:50:29 +00:00
8 lines
134 B
C++
8 lines
134 B
C++
#include <altivec.h>
|
|
int main(int argc, char* argv[])
|
|
{
|
|
__vector unsigned long long z = {1, 2};
|
|
z=vec_add(z,z);
|
|
return 0;
|
|
}
|