summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/bis_factory.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-08-10 02:49:45 +0200
committerZach Hilman <zachhilman@gmail.com>2018-08-12 04:50:48 +0200
commit70a510bd8f2f8d150abe632c94dc9a3eb247e43f (patch)
tree349c3b175f2b1dfed827587a117b2720cb93ff55 /src/core/file_sys/bis_factory.cpp
parentloader: Join 0* files in directory if filename is 00 (diff)
downloadyuzu-70a510bd8f2f8d150abe632c94dc9a3eb247e43f.tar
yuzu-70a510bd8f2f8d150abe632c94dc9a3eb247e43f.tar.gz
yuzu-70a510bd8f2f8d150abe632c94dc9a3eb247e43f.tar.bz2
yuzu-70a510bd8f2f8d150abe632c94dc9a3eb247e43f.tar.lz
yuzu-70a510bd8f2f8d150abe632c94dc9a3eb247e43f.tar.xz
yuzu-70a510bd8f2f8d150abe632c94dc9a3eb247e43f.tar.zst
yuzu-70a510bd8f2f8d150abe632c94dc9a3eb247e43f.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/bis_factory.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/core/file_sys/bis_factory.cpp b/src/core/file_sys/bis_factory.cpp
new file mode 100644
index 000000000..7d0de733b
--- /dev/null
+++ b/src/core/file_sys/bis_factory.cpp
@@ -0,0 +1,24 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "core/file_sys/bis_factory.h"
+
+namespace FileSys {
+
+BISFactory::BISFactory(VirtualDir nand_root_)
+ : nand_root(std::move(nand_root_)),
+ sysnand_cache(std::make_shared<RegisteredCache>(
+ nand_root->GetDirectoryRelative("/system/Contents/registered"))),
+ usrnand_cache(std::make_shared<RegisteredCache>(
+ nand_root->GetDirectoryRelative("/user/Contents/registered"))) {}
+
+std::shared_ptr<RegisteredCache> BISFactory::GetSystemNANDContents() const {
+ return sysnand_cache;
+}
+
+std::shared_ptr<RegisteredCache> BISFactory::GetUserNANDContents() const {
+ return usrnand_cache;
+}
+
+} // namespace FileSys