I'm reading http://www.jamesmolloy.co.uk/tutorial_h ... aging.html
And in this tutorial is presented following struct of page directory.
typedef struct page_directory
{
page_table_t *tables[1024];
u32int tablesPhysical[1024];
u32int physicalAddr;
};
Why does it work? Here
is described struct of entry in directory tables. This is different with above.
virtual memory, next question
Re: virtual memory, next question
Don't take type, variable and function names literally.
Follow the logic of the code and of what it should be doing (read the CPU manual for that) to set up page translation.
Follow the logic of the code and of what it should be doing (read the CPU manual for that) to set up page translation.
- Combuster
- Member
- Posts: 9301
- Joined: Wed Oct 18, 2006 3:45 am
- Libera.chat IRC: [com]buster
- Location: On the balcony, where I can actually keep 1½m distance
- Contact:
Re: virtual memory, next question
And read the comments you conveniently removed.
Re: virtual memory, next question
Could you help me with find manual and suitable part?Follow the logic of the code and of what it should be doing (read the CPU manual for that) to set up page translation.