Edit makefile to start work on compling Yuzu's FS and start work on EmuGPU

This commit is contained in:
ownedbywuigi 2025-06-13 21:29:41 -04:00
parent fc057169a0
commit e6829ef94c
3 changed files with 13 additions and 2 deletions

View file

@ -4,7 +4,7 @@ CXXFLAGS := -std=c++17 -Wall -Wextra -Icore -Icore/ARM -Icore/audio -Icore/fs -I
SRC := \
ui/main.cpp \
core/audio/audio.cpp \
core/fs/fs.cpp \
core/fs/romfs.cpp \
core/gpu/emu/emugpu.cpp \
core/gpu/vk/emugpuvk.cpp \
core/JIT/jit.cpp

View file

@ -1,4 +1,4 @@
# Assets folder
# Core folder
### !! The file system implementation is copied from Yuzu as the filesystem is believed to be the same betweeen both consoles

11
core/gpu/README.md Normal file
View file

@ -0,0 +1,11 @@
# GPU core folder
dir: /core/gpu/
This is where all of the main universal code for emulating the Switch 2 GPU for both OpenGL and Vulkan goes
Directories:
/core/gpu/emu/ - OpenGL EmuGPU (macOS, Android)
/core/gpu/vk/ - Vulkan EmuGPU (Linux)