Add CSND::ExecuteCommands

This commit is contained in:
wheremyfoodat 2023-09-10 23:00:26 +03:00
parent 8ac22e35e9
commit 46cf049e3b
5 changed files with 44 additions and 2 deletions

View file

@ -139,7 +139,10 @@ void Kernel::mapMemoryBlock() {
mem.copySharedFont(ptr);
break;
case KernelHandles::CSNDSharedMemHandle: printf("Mapping CSND memory block\n"); break;
case KernelHandles::CSNDSharedMemHandle:
serviceManager.setCSNDSharedMem(ptr);
printf("Mapping CSND memory block\n");
break;
default: Helpers::panic("Mapping unknown shared memory block: %X", block);
}