diff options
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/common_types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/common_types.h b/src/common/common_types.h index ee18eac81..e8f7ac6be 100644 --- a/src/common/common_types.h +++ b/src/common/common_types.h | |||
| @@ -47,8 +47,8 @@ typedef double f64; ///< 64-bit floating point | |||
| 47 | 47 | ||
| 48 | // TODO: It would be nice to eventually replace these with strong types that prevent accidental | 48 | // TODO: It would be nice to eventually replace these with strong types that prevent accidental |
| 49 | // conversion between each other. | 49 | // conversion between each other. |
| 50 | typedef u32 VAddr; ///< Represents a pointer in the userspace virtual address space. | 50 | typedef u64 VAddr; ///< Represents a pointer in the userspace virtual address space. |
| 51 | typedef u32 PAddr; ///< Represents a pointer in the ARM11 physical address space. | 51 | typedef u64 PAddr; ///< Represents a pointer in the ARM11 physical address space. |
| 52 | 52 | ||
| 53 | // An inheritable class to disallow the copy constructor and operator= functions | 53 | // An inheritable class to disallow the copy constructor and operator= functions |
| 54 | class NonCopyable { | 54 | class NonCopyable { |