首页 文章

在汇编中切换到保护模式后跳转到内核

提问于
浏览
0

我的第一个问题

我正在开发一个32位模式的简单操作系统(只是为了好玩)但我遇到了一个问题,即在切换到(32位)保护模式后我无法跳转到我的内核

这是我的bootloader.asm

[  BITS 16 ]
[ ORG 0x7c00 ]

jmp  start_boot

start_boot:

KERNEL_OFFSET equ 0x1000
mov [BOOT_DRIVE] , dl

mov bp , 0x9000
mov sp , bp

mov bx , MSG_REAL_MODE
call print

call load_kernel

mov ax , [0x1000]
mov word [reg16] , ax
call print_hex

call switch_to_pm


jmp $



[ BITS 16 ]

load_kernel :
mov bx , MSG_LOAD_KERNEL
call print

mov bx , KERNEL_OFFSET
mov dh , 15
mov dl , [BOOT_DRIVE]
call disk_load

ret

[ BITS 32 ]


;Including files
%include "bootloader/include/print_pm.asm"
%include "bootloader/include/print_hex_pm.asm"


start_pm:
mov ebx , MSG_PRO_MODE
call print_pm

mov ax , [0x1000]
mov word [reg16] , ax
call print_hex_pm


jmp $

jmp CODE_SEG:0x1000



;Including files

%include "bootloader/include/print.asm"
%include "bootloader/include/print_hex.asm"
%include "bootloader/include/disk.asm"
%include "bootloader/include/gdt.asm"
%include "bootloader/include/switch_to_pm.asm"


;Data 
BOOT_DRIVE db 0
check db "check" , 0
MSG_LOAD_KERNEL db "loading Kernel" , 0
MSG_REAL_MODE db "Boot 16" , 0
MSG_PRO_MODE db "Boot 32 " , 0

;Padding 
times 510- ($ -$$) db 0
dw 0xAA55

代替

call KERNEL_OFFSET

我用过

jmp KERNEL_OFFSET:0x0

or

jmp CODE_SEG:KERNEL_OFFSET

但这些都不起作用

但如果我刚刚加载我的内核而没有切换到保护模式,它就可以了

顺便说一句,这是我的disk.asm包含在bootloader.asm中

disk_load:
push dx
mov ah , 0x02
mov al , dh
mov ch , 0x00
mov dh , 0x00
mov cl , 0x02

int 0x13

jc .error
pop dx
cmp dh , al
jne .error
ret

.error :
    mov bx , Err
    call print 
    call disk_load


;Data
Err db "Disk error" , 0

编辑:所有包括switch_to_pm.asm

[ BITS 16 ]

switch_to_pm:
CLI
LGDT [ gdtd ]


MOV EAX , CR0
OR EAX , 0x1
MOV CR0 , EAX
JMP CODE_SEG:init_pm

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[ BITS 32 ]

init_pm:


MOV AX , DATA_SEG
MOV DS , AX
MOV ES , AX
MOV SS ,AX
MOV FS , AX
MOV GS , AX

MOV EBP , 0x90000
MOV ESP , EBP


CALL start_pm

gdt.asm

;GDT
gdt_start: 

gdt_null: 
dd 0x0          ; null descriptor
dd 0x0 

; Offset 0x8 bytes from start of GDT: Descriptor code therfore is 8

gdt_code:               ; code descriptor
dw 0xFFFF           ; limit low
dw 0x0              ; base low
db 0x0              ; base middle
db 10011010b            ; access
db 11001111b            ; granularity
db 0x0              ; base high

; Offset 16 bytes (0x10) from start of GDT. Descriptor code therfore is 0x10.

 gdt_data:              ; data descriptor
dw 0xFFFF           ; limit low (Same as code)
dw 0x0              ; base low
db 0x0              ; base middle
db 10010010b            ; access
db 11001111b            ; granularity
db 0x0              ; base high

;...Other descriptors begin at offset 0x18. Remember that each descriptor is 8 bytes in     size?
; Add other descriptors for Ring 3 applications, stack, whatever here...

gdt_end:

gdtd: 
dw gdt_end - gdt_start - 1  ; limit (Size of GDT)
dd gdt_start            ; base of GDT

CODE_SEG equ gdt_code - gdt_start
DATA_SEG equ gdt_data - gdt_start

抱歉我的错误无论如何我编辑 Headers 添加了大部分内容并尝试了Babysteps并且我使用了调试器并且内核被加载所以问题出在哪里

3 回答

  • 0

    %include 文件中隐藏了太多的代码,看看这里到底发生了什么,Mohamed .

    jmp CODE_SEG:KERNEL_OFFSET 应该工作,但我希望它成为 switch_to_pm 例程的一部分 .

    您似乎忽略了需要设置的段寄存器!我强烈推荐http://www.osdev.org - 从"baby steps"开始并重新开始工作......

  • 0

    我们要求所有部件的原因,而不仅仅是“包含的大部分内容”,以便我们能够准确地再现您所拥有的部分,并且无需太多麻烦就能完成 . 毕竟我们正在努力帮助你 .

    无论如何,因为你还没有提供所有东西(特别是打印例程和实际的内核),我必须删除一些东西以使其无错误地组装并添加了由 jmp $ 组成的简单内核 . 我可以告诉你它与 jmp CODE_SEG:KERNEL_OFFSETjmp KERNEL_OFFSET 都可以正常工作 .

  • 0

    你可以粘贴bochs调试吗?根据我的经验,你可能 lgdt 一个错误的gdt . 有时地址是错误的,有时你gdt是关于限制的错误,仔细检查gdt可能对你有所帮助 .

相关问题