intial dummy fs

This commit is contained in:
georgemoralis 2023-11-03 17:50:55 +02:00
parent c126925dd9
commit 1d76376d09
3 changed files with 7 additions and 0 deletions

View File

@ -59,6 +59,8 @@ set(FILESYSTEM_SOURCES src/core/hle/libraries/libkernel/file_system.cpp
set(HOST_SOURCES src/Emulator/Host/controller.cpp
src/Emulator/Host/controller.h
src/core/file_sys/fs.cpp
src/core/file_sys/fs.h
)
set(UTIL_SOURCES src/Emulator/Util/singleton.h

1
src/core/file_sys/fs.cpp Normal file
View File

@ -0,0 +1 @@
namespace Core::FileSys {}

4
src/core/file_sys/fs.h Normal file
View File

@ -0,0 +1,4 @@
#pragma once
namespace Core::FileSys {
}