adds a utility to dump the gdt, adds serial printing for printf in testing

This commit is contained in:
2025-05-30 13:49:37 -04:00
parent 1a60e91745
commit 47056f7d9a
4 changed files with 25 additions and 9 deletions

View File

@ -56,8 +56,11 @@ void reloadSegments();
uint64_t create_descriptor(uint32_t base, uint32_t limit, uint16_t flag);
void gdt_init(uint64_t* gdt);
void gdt_init(void);
void dump_gdt(void);
#endif