2018-01-13 18:22:39 -03:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2014-12-17 02:38:14 -03:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 05:49:13 -03:00
|
|
|
// Refer to the license.txt file included.
|
2014-04-11 19:44:21 -03:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2018-01-02 22:40:30 -03:00
|
|
|
namespace Kernel {
|
2014-05-15 18:25:56 -04:00
|
|
|
|
2014-05-15 20:17:30 -04:00
|
|
|
struct MemoryInfo {
|
2017-10-14 18:31:25 -03:00
|
|
|
u64 base_address;
|
|
|
|
u64 size;
|
2017-10-20 00:00:46 -03:00
|
|
|
u32 type;
|
|
|
|
u32 attributes;
|
|
|
|
u32 permission;
|
2018-01-19 01:37:54 -03:00
|
|
|
u32 device_refcount;
|
|
|
|
u32 ipc_refcount;
|
|
|
|
INSERT_PADDING_WORDS(1);
|
2014-05-15 20:17:30 -04:00
|
|
|
};
|
2018-01-19 01:37:54 -03:00
|
|
|
static_assert(sizeof(MemoryInfo) == 0x28, "MemoryInfo has incorrect size.");
|
2014-05-15 20:17:30 -04:00
|
|
|
|
|
|
|
struct PageInfo {
|
2017-10-14 18:31:25 -03:00
|
|
|
u64 flags;
|
2014-05-15 20:17:30 -04:00
|
|
|
};
|
|
|
|
|
2015-07-21 04:51:36 -03:00
|
|
|
void CallSVC(u32 immediate);
|
2014-04-11 19:44:21 -03:00
|
|
|
|
2018-01-02 22:40:30 -03:00
|
|
|
} // namespace Kernel
|