1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-24 21:16:49 -05:00

Common: implement MultiLevelPageTable.

This commit is contained in:
Fernando Sahmkow
2021-11-10 17:37:17 +01:00
parent 3f8e7a5585
commit b617874724
4 changed files with 171 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#include "common/multi_level_page_table.inc"
namespace Common {
template class Common::MultiLevelPageTable<GPUVAddr>;
template class Common::MultiLevelPageTable<VAddr>;
template class Common::MultiLevelPageTable<PAddr>;
} // namespace Common