summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2023-12-21 00:04:03 +0100
committerGravatar Liam2024-01-18 21:12:30 -0500
commit2f0418c10134b4c8e5ae47ace623b5db57c0435c (patch)
tree775c82e0b3b07090b1a3c83859bebe2c0f0e1369 /src/common
parentMerge pull request #12702 from german77/android-input (diff)
downloadyuzu-2f0418c10134b4c8e5ae47ace623b5db57c0435c.tar.gz
yuzu-2f0418c10134b4c8e5ae47ace623b5db57c0435c.tar.xz
yuzu-2f0418c10134b4c8e5ae47ace623b5db57c0435c.zip
Core: Initial implementation of device memory mapping
Diffstat (limited to 'src/common')
-rw-r--r--src/common/common_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/common_types.h b/src/common/common_types.h
index 0fc225aff..ae04c4d60 100644
--- a/src/common/common_types.h
+++ b/src/common/common_types.h
@@ -45,6 +45,7 @@ using f32 = float; ///< 32-bit floating point
45using f64 = double; ///< 64-bit floating point 45using f64 = double; ///< 64-bit floating point
46 46
47using VAddr = u64; ///< Represents a pointer in the userspace virtual address space. 47using VAddr = u64; ///< Represents a pointer in the userspace virtual address space.
48using DAddr = u64; ///< Represents a pointer in the device specific virtual address space.
48using PAddr = u64; ///< Represents a pointer in the ARM11 physical address space. 49using PAddr = u64; ///< Represents a pointer in the ARM11 physical address space.
49using GPUVAddr = u64; ///< Represents a pointer in the GPU virtual address space. 50using GPUVAddr = u64; ///< Represents a pointer in the GPU virtual address space.
50 51