diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-06-09 23:47:15 +0200 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-06-09 23:47:15 +0200 |
commit | f79823fda70652c0d761247904a8ce4eb7e915c7 (patch) | |
tree | 316a486760138caf65e2c0e2b760b9cf1385cfce /src | |
parent | Merge pull request #2553 from lioncash/language (diff) | |
download | yuzu-f79823fda70652c0d761247904a8ce4eb7e915c7.tar yuzu-f79823fda70652c0d761247904a8ce4eb7e915c7.tar.gz yuzu-f79823fda70652c0d761247904a8ce4eb7e915c7.tar.bz2 yuzu-f79823fda70652c0d761247904a8ce4eb7e915c7.tar.lz yuzu-f79823fda70652c0d761247904a8ce4eb7e915c7.tar.xz yuzu-f79823fda70652c0d761247904a8ce4eb7e915c7.tar.zst yuzu-f79823fda70652c0d761247904a8ce4eb7e915c7.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/memory_manager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/memory_manager.h b/src/video_core/memory_manager.h index 113f9d8f3..43a84bd52 100644 --- a/src/video_core/memory_manager.h +++ b/src/video_core/memory_manager.h @@ -163,8 +163,8 @@ private: static constexpr u64 page_size{1 << page_bits}; static constexpr u64 page_mask{page_size - 1}; - /// Address space in bits, this is fairly arbitrary but sufficiently large. - static constexpr u32 address_space_width{39}; + /// Address space in bits, according to Tegra X1 TRM + static constexpr u32 address_space_width{40}; /// Start address for mapping, this is fairly arbitrary but must be non-zero. static constexpr GPUVAddr address_space_base{0x100000}; /// End of address space, based on address space in bits. |