码迷,mamicode.com
首页 > 其他好文 > 详细

ucore os 初始化

时间:2018-05-02 11:12:46      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:oid   try   console   void   entry   初始化   管理   ext   ade   

从bootloader 交出控制权开始

bootloader 最后调用
((void(*))(void) ()ELF->e_entry& 0xffffff)() ;

在 ld 进行连接的时候 钦定了kern_init 作为程序的入口,所以这里就调用了 init.c 中的 kern_init 函数
先extenrn 了 edata end 实际上是连接时候的 是bss 段区的起始段和终止段
直接将bss 段清零(??)
调用cons_init() 初始化 console 这个要说起来还蛮复杂的

调用pmm_init() 初始化内存管理

pic_init() 初始化 interrupt controller

ucore os 初始化

标签:oid   try   console   void   entry   初始化   管理   ext   ade   

原文地址:https://www.cnblogs.com/sfzyk/p/8978176.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!