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

12 lines
No EOL
140 B
C++

#pragma once
#include "types.hpp"
namespace cpu
{
class Naive
{
public:
//Methods
static void sum_128_long(UInt *a, UInt *b);
};
};