環境
- Time 2022-11-12
- WSL-Ubuntu 22.04
- QEMU 6.2.0
- NASM 2.15.05
前言
說明
參考:https://os.phil-opp.com/entering-longmode//
目標
為了方便在出錯的時候,看到錯誤程式碼,新增一個列印錯誤程式碼的函式。
彙編程式碼
section .multiboot_header
header_start:
dd 0x1BADB002 ; 魔法數字,固定值
dd 0
dd -0x1BADB002 ; 定義的這三個數字相加需要等於0
header_end:
global start
section .text
bits 32
start:
mov al,44
call error
; 列印 `ERR: ` 和一個錯誤程式碼並停住。
; 錯誤程式碼在 al 暫存器中
error:
mov dword [0xb8000], 0x4f524f45
mov dword [0xb8004], 0x4f3a4f52
mov dword [0xb8008], 0x4f204f20
mov byte [0xb800a], al
hlt
其中的 call 指令在之前已經學過了,同時 0xb8000 在之前真實模式時也學過了。
自動啟動 QEMU 指令碼
#! /usr/bin/bash
nasm -f elf32 -g boot.asm
ld -T linker.ld -m elf_i386 boot.o -o kernel.elf
qemu-system-x86_64 -kernel kernel.elf -display curses -s -S
自動 GDB 連線指令碼
#! /usr/bin/bash
gdb kernel.elf -ex "set architecture i386:x86-64" \
-ex "target remote localhost:1234" \
-ex "break start" -ex "continue"
總結
透過啟動 QEMU 和 GDB,單步除錯後,螢幕上列印出了紅色的 ERR 字樣。