+
+/*
+ 1 page directory,
+ 9 page tables:
+ 1. Mapping reserved area and hhk_init
+ 2-9. Remapping the kernels
+*/
+
+.section .kpg
+ .global _k_ptd
+ _k_ptd:
+ .skip KPG_SIZE, 0
+
+
+.section .hhk_init
+ .global start_
+ .type start_, @function /* Optional, this just give the
+ * linker more knowledge about the label
+ */
+ start_:
+ cld
+ # 确保屏蔽所有外中断,直到我们准备好PIC为止
+ cli