feat: io: serial & console

This commit is contained in:
Karina
2025-12-21 13:40:52 +04:00
parent bce8adb119
commit 626174d3d5
13 changed files with 313 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
#ifndef MEMORY_H
#define MEMORY_H
#include "types.h"
void *memset(void *ptr, int value, usize num);
#endif