引导加载程序不工作,错误:"int13_harddisk: function 42. LBA out of range"



我正在尝试加载加载程序集(loader.asm(:

[BITS 16]
[ORG 0x7e00]
start:
; printing message to show that loader is working
mov ah, 0x13
mov al, 1
mov bx, 0xa
xor dx, dx
mov bp, Message
mov cx, MessageLen
int 0x10
End:
hlt
jmp End
Message: db "Loader sucessfually loaded"
MessageLen: equ $-Message

这是我启动时使用的代码(boot.asm(:

[BITS 16]
[ORG 0x7c00]
; Initialize the segment registers
start:
xor ax, ax
mov ds, ax
mov es, ax
mov ss, ax
mov sp, 0x7c00
TestDiskExtension:
mov [DriveId],dl
mov ah, 0x41
mov bx, 0x55aa
int 0x13
jc NotSupported
cmp bx, 0xaa55
jne NotSupported
LoadLoader:
mov si, ReadPacket
mov word[si], 0x10
mov word[si + 2], 5
mov word[si + 4], 0x7e00
mov word[si + 6], 0
mov dword[si + 8], 1
mov dword[si + 0xc], 0
mov dl, [DriveId]
mov ah, 0x42
int 0x13
jc ReadError
mov dl, [DriveId]
jmp 0x7e00
ReadError:
NotSupported:
; print error message
mov ah, 0x13
mov al, 1
mov bx, 0xa
xor dx, dx
mov bp, Message
mov cx, MessageLen
int 0x10
End:
hlt ; halts the processor until an interrupt fires
jmp End ; we jump to end to halt again
DriveId: db 0
Message: db "Error in boot process"
MessageLen: equ $-Message
ReadPacket: times 16 db 0
times (0x1be-($-$$)) db 0
db 80h ; boot indicator
db 0,2,0 ; starting CHS
db 0f0h ; type
db 0ffh, 0ffh, 0ffh ; ending CHS
dd 1 ; starting sector
dd (20*16*63-1) ; size
times (16*3) db 0
db 0x55
db 0xaa

这就是我如何构建我启动的映像:

nasm -f bin -o boot.bin boot.asm
nasm -f bin -o loader.bin loader.asm
dd if=boot.bin of=boot.img bs=512 count=1 conv=notrunc
dd if=loader.bin of=boot.img bs=512 count=5 seek=1 conv=notrunc

构建结果消息:

1+0 records in
1+0 records out
512 bytes copied, 0.0015849 s, 323 kB/s
0+1 records in
0+1 records out
46 bytes copied, 0.0113783 s, 4.0 kB/s

这是我的bochs配置文件:https://pastebin.com/LuJRfwny

来自bochs的错误消息:

00018043857i[BIOS  ] Booting from 0000:7c00
00018047038i[BIOS  ] int13_harddisk: function 42. LBA out of range
00018062202i[CPU0  ] WARNING: HLT instruction with IF=0!

目标是进入加载程序代码并看到消息";Loader successfully loaded";。";TestDiskExtension";boot.asm的一部分运行良好,不会跳转到错误消息。我试图将loader.asm二进制文件加载到内存中的部分似乎是问题所在。

所有提到的文件和二进制文件也可以在这里下载。

解决方案是使用由;bximage";bochs模拟器提供的工具。

使用dd命令从头开始创建图像会导致图像文件的大小和格式错误,这就是系统无法处理的原因。

相关内容

  • 没有找到相关文章

最新更新