mirror of
https://git.citron-emu.org/Citron/Citron.git
synced 2026-03-28 11:38:43 +00:00
- In commit b3facaa6bb, the copyright header was
updated to include "Citron Homebrew Project" across multiple files, regardless
of whether any contributions were made.
- This commit removes the incorrect attribution and reverts the copyright header
to its previous state.
- Copyright attribution should only be added when meaningful contributions have
been made to the file.
- This commit ensures proper compliance with copyright standards and maintains
correct attribution to the respective contributors.
- Special thanks to Tachi for pointing out the need for these corrections and
ensuring that proper attribution practices are followed.
21 lines
566 B
C++
21 lines
566 B
C++
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "core/device_memory.h"
|
|
#include "hle/kernel/board/nintendo/nx/k_system_control.h"
|
|
|
|
namespace Core {
|
|
|
|
#ifdef HAS_NCE
|
|
constexpr size_t VirtualReserveSize = 1ULL << 38;
|
|
#else
|
|
constexpr size_t VirtualReserveSize = 1ULL << 39;
|
|
#endif
|
|
|
|
DeviceMemory::DeviceMemory()
|
|
: buffer{Kernel::Board::Nintendo::Nx::KSystemControl::Init::GetIntendedMemorySize(),
|
|
VirtualReserveSize} {}
|
|
|
|
DeviceMemory::~DeviceMemory() = default;
|
|
|
|
} // namespace Core
|