diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2016-08-29 07:21:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-29 07:21:24 +0200 |
commit | 474586bc53eb6fda40fb0db23ea1d50d32af28b6 (patch) | |
tree | 49df9979f3351f3eac26d8a74e25c5181ba35e6c /src/core/memory.h | |
parent | Merge pull request #1987 from Lectem/ipcdescriptors (diff) | |
parent | LDR: Implement CRO (diff) | |
download | yuzu-474586bc53eb6fda40fb0db23ea1d50d32af28b6.tar yuzu-474586bc53eb6fda40fb0db23ea1d50d32af28b6.tar.gz yuzu-474586bc53eb6fda40fb0db23ea1d50d32af28b6.tar.bz2 yuzu-474586bc53eb6fda40fb0db23ea1d50d32af28b6.tar.lz yuzu-474586bc53eb6fda40fb0db23ea1d50d32af28b6.tar.xz yuzu-474586bc53eb6fda40fb0db23ea1d50d32af28b6.tar.zst yuzu-474586bc53eb6fda40fb0db23ea1d50d32af28b6.zip |
Diffstat (limited to 'src/core/memory.h')
-rw-r--r-- | src/core/memory.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/memory.h b/src/core/memory.h index ae5588dee..cad845385 100644 --- a/src/core/memory.h +++ b/src/core/memory.h @@ -5,6 +5,7 @@ #pragma once #include <cstddef> +#include <string> #include "common/common_types.h" @@ -130,6 +131,8 @@ void CopyBlock(VAddr dest_addr, VAddr src_addr, size_t size); u8* GetPointer(VAddr virtual_address); +std::string ReadCString(VAddr virtual_address, std::size_t max_length); + /** * Converts a virtual address inside a region with 1:1 mapping to physical memory to a physical * address. This should be used by services to translate addresses for use by the hardware. |