mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-19 00:46:31 +00:00
🎨 统一模块初始化函数名为<name>_init()
This commit is contained in:
@ -112,7 +112,7 @@ void (*interrupt[24])(void)=
|
||||
/**
|
||||
* @brief 初始化中断模块
|
||||
*/
|
||||
void init_irq()
|
||||
void irq_init()
|
||||
{
|
||||
init_8259A();
|
||||
}
|
||||
|
@ -18,7 +18,7 @@
|
||||
/**
|
||||
* @brief 初始化中断模块
|
||||
*/
|
||||
void init_irq();
|
||||
void irq_init();
|
||||
|
||||
|
||||
/**
|
||||
|
@ -16,7 +16,7 @@
|
||||
* @brief 初始化系统中断表
|
||||
*
|
||||
*/
|
||||
void init_sys_vector();
|
||||
void sys_vector_init();
|
||||
|
||||
//除法错误
|
||||
void divide_error();
|
||||
|
Reference in New Issue
Block a user