14 lines
No EOL
162 B
C++
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);
|
|
};
|
|
}; |