Setting Up Paging: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
No edit summary
mNo edit summary
Line 50: Line 50:
Now, its time to create a new page table.
Now, its time to create a new page table.
<source lang="c">
<source lang="c">
uint32_t first_page_table[1024];
uint32_t first_page_table[1024] __attribute__((align(4096)));
</source>
</source>