Add: IDT implementation without ISRs

This commit is contained in:
xamidev
2024-07-14 16:58:35 +02:00
parent 007018790a
commit da6cb6c86d
10 changed files with 76 additions and 1 deletions

8
system.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef SYSTEM_H
#define SYSTEM_H
typedef int size_t;
void *memset(void *dest, char val, size_t count);
#endif