diff options
| author | 2020-04-14 21:50:19 -0400 | |
|---|---|---|
| committer | 2020-04-17 00:59:35 -0400 | |
| commit | 6f3266e98b7fd1afcf37aa31cde0eda97662ab48 (patch) | |
| tree | 8ca02582a33bb07c9b51508245d0453783b1a1e4 /src/core/hle/kernel | |
| parent | kernel: Remove old VMManager class. (diff) | |
| download | yuzu-6f3266e98b7fd1afcf37aa31cde0eda97662ab48.tar.gz yuzu-6f3266e98b7fd1afcf37aa31cde0eda97662ab48.tar.xz yuzu-6f3266e98b7fd1afcf37aa31cde0eda97662ab48.zip | |
memory: Add copyright notice for Atmosphere where applicable.
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/memory/address_space_info.cpp | 3 | ||||
| -rw-r--r-- | src/core/hle/kernel/memory/address_space_info.h | 3 | ||||
| -rw-r--r-- | src/core/hle/kernel/memory/memory_block.h | 3 | ||||
| -rw-r--r-- | src/core/hle/kernel/memory/page_heap.cpp | 3 | ||||
| -rw-r--r-- | src/core/hle/kernel/memory/page_heap.h | 3 | ||||
| -rw-r--r-- | src/core/hle/kernel/memory/slab_heap.h | 3 |
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 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | // This file references various implementation details from Atmosphère, an open-source firmware for | ||
| 6 | // the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX. | ||
| 7 | |||
| 5 | #include <array> | 8 | #include <array> |
| 6 | 9 | ||
| 7 | #include "common/assert.h" | 10 | #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 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | // This file references various implementation details from Atmosphère, an open-source firmware for | ||
| 6 | // the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX. | ||
| 7 | |||
| 5 | #pragma once | 8 | #pragma once |
| 6 | 9 | ||
| 7 | #include "common/common_funcs.h" | 10 | #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 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | // This file references various implementation details from Atmosphère, an open-source firmware for | ||
| 6 | // the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX. | ||
| 7 | |||
| 5 | #pragma once | 8 | #pragma once |
| 6 | 9 | ||
| 7 | #include "common/alignment.h" | 10 | #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 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | // This file references various implementation details from Atmosphère, an open-source firmware for | ||
| 6 | // the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX. | ||
| 7 | |||
| 5 | #include "core/core.h" | 8 | #include "core/core.h" |
| 6 | #include "core/hle/kernel/memory/page_heap.h" | 9 | #include "core/hle/kernel/memory/page_heap.h" |
| 7 | #include "core/memory.h" | 10 | #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 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | // This file references various implementation details from Atmosphère, an open-source firmware for | ||
| 6 | // the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX. | ||
| 7 | |||
| 5 | #pragma once | 8 | #pragma once |
| 6 | 9 | ||
| 7 | #include <array> | 10 | #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 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | // This file references various implementation details from Atmosphère, an open-source firmware for | ||
| 6 | // the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX. | ||
| 7 | |||
| 5 | #pragma once | 8 | #pragma once |
| 6 | 9 | ||
| 7 | #include <atomic> | 10 | #include <atomic> |