1

move logger

This commit is contained in:
2022-07-24 21:49:04 +02:00
parent 40108cdacc
commit 0ced077122
17 changed files with 22 additions and 21 deletions

7
c_os/user/lib/mem/Memory.cc Executable file
View File

@ -0,0 +1,7 @@
#include "Memory.h"
void bse::memset(char* destination, const char value, const unsigned int bytes) {
for (unsigned int byte = 0; byte < bytes; ++byte) {
*(destination + byte) = value;
}
}