cpplab/include/cpu/sse.hpp
2020-07-17 08:46:46 +01:00

14 lines
No EOL
162 B
C++

#pragma once
#include "types.hpp"
namespace cpu
{
class SSE
{
public:
static void paddw(UInt *a, UInt *b);
static void paddd(ULong *a, ULong *b);
};
};