1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-17 05:10:13 -06:00
suyu-mirror/src/common/multi_level_page_table.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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 10:37:17 -06:00
#include "common/multi_level_page_table.inc"
namespace Common {
2022-04-13 14:02:55 -05:00
template class Common::MultiLevelPageTable<u64>;
2021-11-11 14:24:40 -06:00
template class Common::MultiLevelPageTable<u32>;
2021-11-10 10:37:17 -06:00
} // namespace Common