我目前正在从头开始构建一个简单的操作系统,所以我正在测试一些引导扇区代码并使用 Qemu 模拟它。
当操作系统启动时,我的引导扇区代码应该打印“A”。
这是引导扇区代码的第一个版本(不使用函数调用)
[org 0x7c00]
mov al,'A'
mov ah,0x0e ; int 10/ ah = 0eh -> scrolling teletype BIOS routine
int 0x10
jmp $
times 510 -( $ - $$ ) db 0
dw 0xaa55
执行 nasm 生成的二进制文件后,使用:
qemu-system-i386 test.bin
结果是正确的,字符“A”出现在它应该出现的位置
但是,在尝试使用打印存储在 al 中的字符的功能后,屏幕上没有打印任何内容
这是test.asm文件的第二个版本(包括这次的函数调用)
[org 0x7c00]
mov al,'A'
call my_print_function
jmp $
times 510 -( $ - $$ ) db 0
dw 0xaa55
my_print_function:
pusha ; push all registers
; same code as the first version to print a character stored in al
mov ah,0x0e
int 0x10
popa ; pop all registers
ret
那么为什么它不能正常运行呢?
任何帮助将不胜感激。
谢谢