Пейджинг виртуальной памяти

349
user66900

Если размер страницы составляет 512 байт, а таблица подкачки содержит 64 элемента, каждый по 11 бит. Сколько бит это физический адрес? - Что означает «11 бит» в данном случае? Это номер кадра (2 ^ 11) по физическому адресу или что-то еще? Это для моего экзамена завтра.

0

1 ответ на вопрос

1
Ofir

A page of 512bytes requires 9 bits for intra page addressing (assuming addressing is in byte units). An element in the paging table is presumable a page address, which makes 11bits mean there are 2048 such pages possible. Assuming all these assumptions are correct for your case, and the pages are non-overlapping - there should be a total of 20 bits for the address (11+9). Which makes the 64 elements an irrelevant parameter for your question.

Похожие вопросы