Espresso 0.0.1f

This commit is contained in:
2025-07-07 10:41:05 -05:00
parent dbaee2c881
commit f677e2e283
13 changed files with 315 additions and 119 deletions

View File

@ -23,7 +23,7 @@ void paging_init(void)
page_directory = (page_directory_entry_t*)alloc_page();
memset(page_directory, 0, PAGE_SIZE);
/* Allocate and set up the first identity-mapped page table (04MB) */
/* Allocate and set up the first identity-mapped page table (0-4MB) */
page_tables[0] = (page_table_entry_t*)alloc_page();
memset(page_tables[0], 0, PAGE_SIZE);
for (uint32_t i = 0; i < PAGE_TABLE_ENTRIES; i++)