mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
13 lines
229 B
C++
13 lines
229 B
C++
#pragma once
|
|
|
|
#include "orbis-config.hpp"
|
|
|
|
namespace orbis {
|
|
static constexpr auto NCPUBITS = sizeof(slong) * 8;
|
|
static constexpr auto NCPUWORDS = 128 / NCPUBITS;
|
|
|
|
struct cpuset {
|
|
slong bits[NCPUWORDS];
|
|
};
|
|
} // namespace orbis
|