2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

kernel/process: Remove unused AddressMapping struct

Another leftover from citra that's now no longer necessary.
This commit is contained in:
Lioncash 2019-03-24 17:40:09 -04:00
parent 3f74518e19
commit 7c4bc7b883

View file

@ -35,14 +35,6 @@ class Thread;
struct CodeSet;
struct AddressMapping {
// Address and size must be page-aligned
VAddr address;
u64 size;
bool read_only;
bool unk_flag;
};
enum class MemoryRegion : u16 {
APPLICATION = 1,
SYSTEM = 2,