summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/memory
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-04-15 03:50:19 +0200
committerbunnei <bunneidev@gmail.com>2020-04-17 06:59:35 +0200
commit6f3266e98b7fd1afcf37aa31cde0eda97662ab48 (patch)
tree8ca02582a33bb07c9b51508245d0453783b1a1e4 /src/core/hle/kernel/memory
parentkernel: Remove old VMManager class. (diff)
downloadyuzu-6f3266e98b7fd1afcf37aa31cde0eda97662ab48.tar
yuzu-6f3266e98b7fd1afcf37aa31cde0eda97662ab48.tar.gz
yuzu-6f3266e98b7fd1afcf37aa31cde0eda97662ab48.tar.bz2
yuzu-6f3266e98b7fd1afcf37aa31cde0eda97662ab48.tar.lz
yuzu-6f3266e98b7fd1afcf37aa31cde0eda97662ab48.tar.xz
yuzu-6f3266e98b7fd1afcf37aa31cde0eda97662ab48.tar.zst
yuzu-6f3266e98b7fd1afcf37aa31cde0eda97662ab48.zip
Diffstat (limited to 'src/core/hle/kernel/memory')
-rw-r--r--src/core/hle/kernel/memory/address_space_info.cpp3
-rw-r--r--src/core/hle/kernel/memory/address_space_info.h3
-rw-r--r--src/core/hle/kernel/memory/memory_block.h3
-rw-r--r--src/core/hle/kernel/memory/page_heap.cpp3
-rw-r--r--src/core/hle/kernel/memory/page_heap.h3
-rw-r--r--src/core/hle/kernel/memory/slab_heap.h3
6 files changed, 18 insertions, 0 deletions
diff --git a/src/core/hle/kernel/memory/address_space_info.cpp b/src/core/hle/kernel/memory/address_space_info.cpp
index 67e397a0d..6a267c951 100644
--- a/src/core/hle/kernel/memory/address_space_info.cpp
+++ b/src/core/hle/kernel/memory/address_space_info.cpp
@@ -2,6 +2,9 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+// This file references various implementation details from Atmosphère, an open-source firmware for
+// the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX.
+
#include <array>
#include "common/assert.h"
diff --git a/src/core/hle/kernel/memory/address_space_info.h b/src/core/hle/kernel/memory/address_space_info.h
index 421986626..cc9a6421e 100644
--- a/src/core/hle/kernel/memory/address_space_info.h
+++ b/src/core/hle/kernel/memory/address_space_info.h
@@ -2,6 +2,9 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+// This file references various implementation details from Atmosphère, an open-source firmware for
+// the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX.
+
#pragma once
#include "common/common_funcs.h"
diff --git a/src/core/hle/kernel/memory/memory_block.h b/src/core/hle/kernel/memory/memory_block.h
index 1bb31405a..e11043b60 100644
--- a/src/core/hle/kernel/memory/memory_block.h
+++ b/src/core/hle/kernel/memory/memory_block.h
@@ -2,6 +2,9 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+// This file references various implementation details from Atmosphère, an open-source firmware for
+// the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX.
+
#pragma once
#include "common/alignment.h"
diff --git a/src/core/hle/kernel/memory/page_heap.cpp b/src/core/hle/kernel/memory/page_heap.cpp
index 115084160..efcbb3cad 100644
--- a/src/core/hle/kernel/memory/page_heap.cpp
+++ b/src/core/hle/kernel/memory/page_heap.cpp
@@ -2,6 +2,9 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+// This file references various implementation details from Atmosphère, an open-source firmware for
+// the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX.
+
#include "core/core.h"
#include "core/hle/kernel/memory/page_heap.h"
#include "core/memory.h"
diff --git a/src/core/hle/kernel/memory/page_heap.h b/src/core/hle/kernel/memory/page_heap.h
index 9eb15a053..39ca45ab1 100644
--- a/src/core/hle/kernel/memory/page_heap.h
+++ b/src/core/hle/kernel/memory/page_heap.h
@@ -2,6 +2,9 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+// This file references various implementation details from Atmosphère, an open-source firmware for
+// the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX.
+
#pragma once
#include <array>
diff --git a/src/core/hle/kernel/memory/slab_heap.h b/src/core/hle/kernel/memory/slab_heap.h
index ca334384b..049403e15 100644
--- a/src/core/hle/kernel/memory/slab_heap.h
+++ b/src/core/hle/kernel/memory/slab_heap.h
@@ -2,6 +2,9 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+// This file references various implementation details from Atmosphère, an open-source firmware for
+// the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX.
+
#pragma once
#include <atomic>