diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2023-12-21 00:04:03 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2024-01-19 03:12:30 +0100 |
commit | 2f0418c10134b4c8e5ae47ace623b5db57c0435c (patch) | |
tree | 775c82e0b3b07090b1a3c83859bebe2c0f0e1369 /src/common | |
parent | Merge pull request #12702 from german77/android-input (diff) | |
download | yuzu-2f0418c10134b4c8e5ae47ace623b5db57c0435c.tar yuzu-2f0418c10134b4c8e5ae47ace623b5db57c0435c.tar.gz yuzu-2f0418c10134b4c8e5ae47ace623b5db57c0435c.tar.bz2 yuzu-2f0418c10134b4c8e5ae47ace623b5db57c0435c.tar.lz yuzu-2f0418c10134b4c8e5ae47ace623b5db57c0435c.tar.xz yuzu-2f0418c10134b4c8e5ae47ace623b5db57c0435c.tar.zst yuzu-2f0418c10134b4c8e5ae47ace623b5db57c0435c.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/common_types.h | 1 |
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 using f64 = double; ///< 64-bit floating point using VAddr = u64; ///< Represents a pointer in the userspace virtual address space. +using DAddr = u64; ///< Represents a pointer in the device specific virtual address space. using PAddr = u64; ///< Represents a pointer in the ARM11 physical address space. using GPUVAddr = u64; ///< Represents a pointer in the GPU virtual address space. |