diff options
| author | 2021-11-14 20:55:52 +0100 | |
|---|---|---|
| committer | 2022-10-06 21:00:52 +0200 | |
| commit | feb49c822d9cabc5bc7be9eab1f2bf4ba460176a (patch) | |
| tree | 678c58e7fb8e41f5a04e309df9d196320d11de99 /src/common/address_space.cpp | |
| parent | NVDRV: Update copyright notices. (diff) | |
| download | yuzu-feb49c822d9cabc5bc7be9eab1f2bf4ba460176a.tar.gz yuzu-feb49c822d9cabc5bc7be9eab1f2bf4ba460176a.tar.xz yuzu-feb49c822d9cabc5bc7be9eab1f2bf4ba460176a.zip | |
NVDRV: Remake ASGPU
Diffstat (limited to 'src/common/address_space.cpp')
| -rw-r--r-- | src/common/address_space.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/common/address_space.cpp b/src/common/address_space.cpp new file mode 100644 index 000000000..6db85be87 --- /dev/null +++ b/src/common/address_space.cpp | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | // Copyright © 2021 Skyline Team and Contributors (https://github.com/skyline-emu/) | ||
| 2 | // Licensed under GPLv3 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include "common/address_space.inc" | ||
| 6 | |||
| 7 | namespace Common { | ||
| 8 | |||
| 9 | template class Common::FlatAllocator<u32, 0, 32>; | ||
| 10 | |||
| 11 | } | ||