add English version of one translation

This commit is contained in:
Dongliang Mu
2018-02-15 14:23:48 -05:00
parent 477656954e
commit 66cbbdd8c7

View File

@@ -392,7 +392,7 @@ outb(0xff, 0xa1); /* Mask all interrupts on the secondary PIC */
outb(0xfb, 0x21); /* Mask all but cascade on the primary PIC */
```
这个函数调用屏蔽了从中断控制器的所有中断和主中断控制器上除IRQ2以外的所有中断IRQ2是主中断控制器上的级联中断所有从中断控制器的中断将通过这个级联中断报告给 CPU )。
这个函数调用屏蔽了从中断控制器 (注:中断控制器的原文是 Programmable Interrupt Controller) 的所有中断和主中断控制器上除IRQ2以外的所有中断IRQ2是主中断控制器上的级联中断所有从中断控制器的中断将通过这个级联中断报告给 CPU )。
到这里位置,我们就完成了所有的准备工作,下面我们就将正式开始从实模式转换到保护模式。