📄 loader.s
字号:
/* chapter3/1/loader.S Author: Wenbo Yang <solrex@gmail.com> <http://solrex.cn> This file is part of the source code of book "Write Your Own OS with Free and Open Source Software". Homepage @ <http://share.solrex.cn/WriteOS/>. This file is licensed under the GNU General Public License; either version 3 of the License, or (at your option) any later version. */#include "pm.h".code16.text jmp LABEL_BEGIN /* jump over the .data section. *//* NOTE! Wenbo-20080512: Actually here we put the normal .data section into the .code section. For application SW, it is not allowed. However, we are writting an OS. That is OK. Because there is no OS to complain about that behavior. :) *//* Global Descriptor Table */LABEL_GDT: Descriptor 0, 0, 0LABEL_DESC_CODE32: Descriptor 0, (SegCode32Len - 1), (DA_C + DA_32)LABEL_DESC_VIDEO: Descriptor 0xB8000, 0xffff, DA_DRW.set GdtLen, (. - LABEL_GDT) /* GDT Length */GdtPtr: .2byte (GdtLen - 1) /* GDT Limit */ .4byte 0 /* GDT Base *//* GDT Selector */.set SelectorCode32, (LABEL_DESC_CODE32 - LABEL_GDT).set SelectorVideo, (LABEL_DESC_VIDEO - LABEL_GDT)/* Program starts here. */LABEL_BEGIN: mov %cs, %ax /* Move code segment address(CS) to data segment */ mov %ax, %ds /* register(DS), ES and SS. Because we have */ mov %ax, %es /* embedded .data section into .code section in */ mov %ax, %ss /* the start(metioned in the NOTE above). */ mov $0x100, %sp /* Initialize 32-bits code segment descriptor. */ xor %eax, %eax mov %cs, %ax shl $4, %eax addl $(LABEL_SEG_CODE32), %eax movw %ax, (LABEL_DESC_CODE32 + 2) shr $16, %eax movb %al, (LABEL_DESC_CODE32 + 4) movb %ah, (LABEL_DESC_CODE32 + 7) /* Prepared for loading GDTR */ xor %eax, %eax mov %ds, %ax shl $4, %eax add $(LABEL_GDT), %eax /* eax <- gdt base*/ movl %eax, (GdtPtr + 2) /* Load GDTR(Global Descriptor Table Register) */ lgdtw GdtPtr /* Clear Interrupt Flags */ cli /* Open A20 line. */ inb $0x92, %al orb $0b00000010, %al outb %al, $0x92 /* Enable protect mode, PE bit of CR0. */ movl %cr0, %eax orl $1, %eax movl %eax, %cr0 /* Mixed-Size Jump. */ ljmpl $SelectorCode32, $0 /* Thanks to earthengine@gmail, I got */ /* this mixed-size jump insn of gas. */LABEL_SEG_CODE32: .code32 mov $(SelectorVideo), %ax mov %ax, %gs /* Video segment selector(dest) */ movl $((80 * 10 + 0) * 2), %edi movb $0xC, %ah /* 0000: Black Back 1100: Red Front */ movb $'P', %al mov %ax, %gs:(%edi) /* Stop here, infinate loop. */ jmp ./* Get the length of 32-bit segment code. */.set SegCode32Len, . - LABEL_SEG_CODE32
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -