mirror of
https://git.citron-emu.org/Citron/Citron.git
synced 2025-02-07 08:46:25 +01:00
Gets the two structures out of an unrelated header and places them with the rest of the memory management code. This also corrects the structures. PageInfo appears to only contain a 32-bit flags member, and the extra padding word in MemoryInfo isn't necessary.
13 lines
246 B
C++
13 lines
246 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 {
|
|
|
|
void CallSVC(u32 immediate);
|
|
|
|
} // namespace Kernel
|