feat: introduced tasking, added paging (no vm), moved malloc, added
syscalls, other stuff
This commit is contained in:
@@ -15,7 +15,7 @@ int memcpy(uint8_t *dst, const uint8_t *src, int amount) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
int memset(char *dst, char data, int amount) {
|
||||
int memset(uint8_t *dst, char data, int amount) {
|
||||
for (int i = 0; i < amount; ++i) {
|
||||
dst[i] = data;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user