From 3411883fe32786c08bbdb28fd35e0b39a420be41 Mon Sep 17 00:00:00 2001 From: bunnei Date: Mon, 28 Aug 2017 21:09:42 -0400 Subject: arm: Use 64-bit addressing in a bunch of places. --- src/common/common_types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/common/common_types.h') 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 // 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. // An inheritable class to disallow the copy constructor and operator= functions class NonCopyable { -- cgit v1.2.3