blob: dd49c75a279231e7e444ee910f288b8613746d31 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright 2019 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "common/alignment.h"
namespace Kernel {
using PhysicalMemory = std::vector<u8, Common::AlignmentAllocator<u8, 256>>;
}
|