Update kernel

This commit is contained in:
Alex
2023-08-06 04:53:14 +03:00
parent 3b65386399
commit 2c51e4432f
181 changed files with 21873 additions and 21475 deletions

View File

@ -23,11 +23,12 @@
class Bitmap
{
public:
size_t Size;
uint8_t *Buffer;
bool operator[](uint64_t index);
bool Set(uint64_t index, bool value);
bool Get(uint64_t index);
size_t Size;
uint8_t *Buffer;
bool Set(uint64_t index, bool value);
bool Get(uint64_t index);
bool operator[](uint64_t index);
};
#endif // !__FENNIX_KERNEL_BITMAP_H__