mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-05 14:57:53 +00:00
7de8e36343
Nothing from this enum is intended to be used outside of this function.
29 lines
550 B
C++
29 lines
550 B
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "common/common_types.h"
|
|
|
|
namespace Kernel {
|
|
|
|
struct MemoryInfo {
|
|
u64 base_address;
|
|
u64 size;
|
|
u32 type;
|
|
u32 attributes;
|
|
u32 permission;
|
|
u32 device_refcount;
|
|
u32 ipc_refcount;
|
|
INSERT_PADDING_WORDS(1);
|
|
};
|
|
static_assert(sizeof(MemoryInfo) == 0x28, "MemoryInfo has incorrect size.");
|
|
|
|
struct PageInfo {
|
|
u64 flags;
|
|
};
|
|
|
|
void CallSVC(u32 immediate);
|
|
|
|
} // namespace Kernel
|