This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
revision history:
版本2: 为了说明Linux的进程管理,在版本1的基础上,对Linux 0.11作了修改:
a) 启动两个进程(0号、1号进程),分别向屏幕上输出字符'0 '和'1 ';
b) 开启中断,在时钟中断处理程序中进行任务调度;
版本1: 为了说明Linux的启动和初始化,对Linux 0.11作了简化:
a) 只启动一个进程(0号进程),不断向屏幕上输出字符'A ';
b) 关闭中断;
c) 只使用软中断0x81, 不使用任务调度、内存管理、文件系统、设备管理系统,字符输出功能通过直接访问显存来实现。