suyu/src/common/multi_level_page_table.cpp

10 lines
285 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2021-11-10 17:37:17 +01:00
#include "common/multi_level_page_table.inc"
namespace Common {
2022-04-13 21:02:55 +02:00
template class Common::MultiLevelPageTable<u64>;
2021-11-11 21:24:40 +01:00
template class Common::MultiLevelPageTable<u32>;
2021-11-10 17:37:17 +01:00
} // namespace Common