Add IVFC parser
This commit is contained in:
13
include/fs/romfs.hpp
Normal file
13
include/fs/romfs.hpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
#include "helpers.hpp"
|
||||
#include <vector>
|
||||
|
||||
namespace RomFS {
|
||||
|
||||
struct RomFSNode {
|
||||
std::vector<RomFSNode> children;
|
||||
};
|
||||
|
||||
RomFSNode parseRomFSTree(uintptr_t romFS, u64 romFSSize);
|
||||
|
||||
} // namespace RomFS
|
||||
Reference in New Issue
Block a user