[NDM] Stub NDM service

This commit is contained in:
wheremyfoodat 2022-09-22 00:33:54 +03:00
parent aef1520f17
commit 36a30da78d
9 changed files with 84 additions and 10 deletions

View file

@ -52,6 +52,7 @@ set(KERNEL_SOURCE_FILES src/core/kernel/kernel.cpp src/core/kernel/resource_limi
)
set(SERVICE_SOURCE_FILES src/core/services/service_manager.cpp src/core/services/apt.cpp src/core/services/hid.cpp
src/core/services/fs.cpp src/core/services/gsp_gpu.cpp src/core/services/gsp_lcd.cpp
src/core/services/ndm.cpp
)
set(PICA_SOURCE_FILES src/core/PICA/gpu.cpp src/core/PICA/regs.cpp)
@ -61,7 +62,7 @@ set(HEADER_FILES include/emulator.hpp include/helpers.hpp include/opengl.hpp inc
include/kernel/config_mem.hpp include/services/service_manager.hpp include/services/apt.hpp
include/kernel/handles.hpp include/services/hid.hpp include/services/fs.hpp
include/services/gsp_gpu.hpp include/services/gsp_lcd.hpp include/arm_defs.hpp
include/gpu.hpp
include/gpu.hpp include/services/ndm.hpp
)
set(THIRD_PARTY_SOURCE_FILES third_party/imgui/imgui.cpp