summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_page_table.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-11-11 01:17:54 +0100
committerLiam <byteslice@airmail.cc>2022-11-11 01:20:57 +0100
commit18123ff958b0a4d877dab45a54637245c3b296ba (patch)
treef8216a2d97b604b03bee20c475d2ee88edab9204 /src/core/hle/kernel/k_page_table.h
parentdebugger: allow more than one connection attempt per session (diff)
downloadyuzu-18123ff958b0a4d877dab45a54637245c3b296ba.tar
yuzu-18123ff958b0a4d877dab45a54637245c3b296ba.tar.gz
yuzu-18123ff958b0a4d877dab45a54637245c3b296ba.tar.bz2
yuzu-18123ff958b0a4d877dab45a54637245c3b296ba.tar.lz
yuzu-18123ff958b0a4d877dab45a54637245c3b296ba.tar.xz
yuzu-18123ff958b0a4d877dab45a54637245c3b296ba.tar.zst
yuzu-18123ff958b0a4d877dab45a54637245c3b296ba.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_page_table.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/kernel/k_page_table.h b/src/core/hle/kernel/k_page_table.h
index 950850291..f1ca785d7 100644
--- a/src/core/hle/kernel/k_page_table.h
+++ b/src/core/hle/kernel/k_page_table.h
@@ -320,6 +320,9 @@ public:
constexpr VAddr GetAliasCodeRegionStart() const {
return m_alias_code_region_start;
}
+ constexpr VAddr GetAliasCodeRegionEnd() const {
+ return m_alias_code_region_end;
+ }
constexpr VAddr GetAliasCodeRegionSize() const {
return m_alias_code_region_end - m_alias_code_region_start;
}