每当我尝试将像素写入 VESA 模式的 LFB 时,都会出现页面错误,该页面存在并已被读取。我的分页实现来自 James Molloy 的 OS 系列。我已经尝试如下身份映射LFB:
for (unsigned int i = 0xFD000000; i < 0xFE000000; i += 0x1000) {
page_t* pg = get_page(i, 1, kernel_directory);
alloc_page(pg, 1, 1);
}
这些是这些功能的原型:
page_t* get_page(uint32_t address, int make, page_directory_t* dir);
void alloc_frame(page_t* page, int is_kernel, int is_writeable);
禁用分页后,我可以毫无问题地将像素写入 LFB。我的身份映射 LFB 是否不正确?我还需要做些什么来正确识别映射吗?有什么建议么?