diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/common_types.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/common/common_types.h b/src/common/common_types.h index ee18eac81..844d34965 100644 --- a/src/common/common_types.h +++ b/src/common/common_types.h @@ -24,6 +24,7 @@ #pragma once +#include <array> #include <cstdint> #ifdef _MSC_VER @@ -47,8 +48,11 @@ typedef double f64; ///< 64-bit floating point // TODO: It would be nice to eventually replace these with strong types that prevent accidental // conversion between each other. -typedef u32 VAddr; ///< Represents a pointer in the userspace virtual address space. -typedef u32 PAddr; ///< Represents a pointer in the ARM11 physical address space. +typedef u64 VAddr; ///< Represents a pointer in the userspace virtual address space. +typedef u64 PAddr; ///< Represents a pointer in the ARM11 physical address space. + +using u128 = std::array<std::uint64_t, 2>; +static_assert(sizeof(u128) == 16, "u128 must be 128 bits wide"); // An inheritable class to disallow the copy constructor and operator= functions class NonCopyable { |