0

无法让我的 FAT32 引导扇区工作。请帮我。我已经尝试了从查看代码到在 virtualbox 中测试它的所有方法。当我在 virtualbox 中运行它时,我收到此错误:致命:INT18 启动错误。这是代码:

BITS 16
ORG 0x7C00
jmp START

OEM_ID db “PARADIGM"
BytesPerSector dw 0x0200
SectorsPerCluster db 0x08
ReservedSectors dw 0x0021
TotalFATs db 0x02
MaxRootEntries dw 0x0000
TotalSectorsSmall dw 0x0000
MediaDescriptor db 0xF8
SectorsPerTrack dw 0x003F
SectorsPerHead dw 0x0080
HiddenSectors dd 0x0000003F
TotalSectorsBig dd 0x0040994
BigSectorsPerFAT dd 0x00000778
SectorsPerFAT dd 0x0000101F
Flags dw 0x0000
FSVersion dw 0x0000
RootDirectoryStart dd 0x00000002
FSInfoSector dw 0x0001
BackupBootSector dw 0x0006
times 13 db 0x00
DriveNumber db 0x00
db 0x00
Signature db 0x29
VolumeID dd 0x1F040FD5
VolumeLabel db "PARADIGM_BOOT"
SystemID db "FAT32"

START:
cli
mov ax, 0x0000
mov ds, ax
mov es, ax
mov fs, ax
mov gs, ax
mov ax, 0x0000
mov ss, ax
mov sp, 0x0000
sti
mov si, msgLoading
call DisplayMessage
mov cx,  WORD[SectorsPerCluster]
xor ax, ax
mov al, BYTE [TotalFATs]
mul WORD[BigSectorsPerFAT]
add ax, WORD [ReservedSectors]
mov WORD [datasector], ax
xor ax, ax
mov ax, WORD [RootDirectoryStart]
call ClusterLBA
mov bx, 0x0200
call ReadSectors
mov cx, WORD [0x0080]
mov di, 0x0200
.LOOP:
push cx
mov cx, 0x000C
mov si, ImageName
push di
rep cmpsb
pop di
je LOAD_FILE
pop cx
add di, 0x0020
loop .LOOP
jmp FAILURE

LOAD_FILE:
mov si, msgCRLF
call DisplayMessage
mov dx, WORD [di + 0x001A]
mov WORD [cluster], dx
mov ax, 0x0100
mov es, ax
mov bx, 0
xor cx, cx
mov cl, BYTE[SectorsPerCluster]
mov ax, WORD[cluster]
call ClusterLBA
call ReadSectors
jmp DONE

DONE:
mov si, msgCRLF
call DisplayMessage
push WORD 0x0200
push WORD 0x0000
retf

FAILURE:
mov si, msgFailure
call DisplayMessage
mov ah, 0x00
int 0x16
int 0x19

DisplayMessage:
lodsb
or al, al
jz .DONE
mov ah, 0x0E
mov bh, 0x00
mov bl, 0x07
int 0x10
jmp DisplayMessage
.DONE:
ret

ReadSectors:
.MAIN:
mov di, 5
.SECTORLOOP:
push ax
push bx
push cx
call LBACHS
mov ah, 0x02
mov al, 0x01
mov ch, BYTE [absoluteTrack]
mov cl, BYTE [absoluteSector]
mov dh, BYTE [absoluteHead]
mov dl, BYTE [DriveNumber]
int 0x13
jnc .SUCCESS
xor ax, ax
int 0x13
dec di
pop cx
pop bx
pop ax
jnz .SECTORLOOP
int 0x18
.SUCCESS:
mov si, msgProgress
call DisplayMessage
pop cx
pop bx
pop ax
add bx, WORD [BytesPerSector]
inc ax
loop .MAIN
ret

ClusterLBA:
sub ax, 0x0002
xor cx, cx
mov cl, BYTE [SectorsPerCluster]
mul cx
add ax, WORD [datasector]
ret

LBACHS:
xor dx, dx
div WORD [SectorsPerTrack]
inc dl
mov BYTE [absoluteSector], dl
xor dx, dx
div WORD [SectorsPerHead]
mov BYTE [absoluteHead], dl
mov BYTE [absoluteTrack], al
ret

absoluteSector db 0x00
absoluteHead db 0x00
absoluteTrack db 0x00

datasector dw 0x0000
cluster dw 0x0000
ImageName dw "BOOTLOAD.BIN"
msgLoading db 0x0D, 0x0A, "Loading Boot Image", 0x0D, 0x0A, 0x00
msgCRLF db 0x0D, 0x0A, 0x00
msgProgress db ".", 0x00
msgFailure db 0x0D, 0x0A, "ERROR: Press Any Key to Reboot", 0x00

times 510-($-$$) db 0
dw 0xAA55´

我正在使用 iso 规范。似乎它没有正确读取扇区。我从Amila Surendra那里得到了代码

4

1 回答 1

2

“Int 0x18”通常在 BIOS 找不到任何可引导的内容时使用。曾几何时它在 ROM 中启动 BASIC 解释器,但现在它只显示一条消息。

BIOS 检查设备的第一个扇区是否可以读取,以及它是否在扇区偏移量 0x01FE 处包含魔术签名 0xAA55。没有其他要求 - 扇区的其余部分可能充满随机字节,导致计算机崩溃,BIOS 不会关心并执行它(并且不会显示“Int 0x18”消息)。

您的代码确实包含偏移 0x01FE 处的魔术签名;因此问题不在于您的代码。问题可能在于您如何将引导扇区安装到磁盘映像中或如何配置模拟器。

检查事项:

1)模拟器被告知在哪里可以找到磁盘映像(例如,并没有尝试引导完全不同的东西,或者没有被告知从不存在的磁盘引导)

2)模拟器被告知从您将磁盘映像设置为的任何磁盘驱动器引导(例如,当引导扇区在硬盘或其他东西上时,您不尝试从软盘引导)

3) 磁盘映像是模拟器所期望的格式。大多数模拟器支持几种不同的磁盘映像格式(VDI、VHD 等)。如果磁盘映像是一种格式(例如,仅包含原始扇区数据的固定大小的映像),但仿真器认为它是另一种格式(例如 VDI),则可能会导致问题。

4)引导扇区正确安装在磁盘映像中(可以考虑使用“hexdump”之类的工具检查磁盘映像的第一个扇区)。这可能包括将您的代码安装为分区的第一个扇区,其中磁盘的第一个扇区中没有任何内容(请参阅下面的分区信息)。

未来笔记:

您的 BPB(“BIOS 参数块”)看起来像是用于硬盘(而不是软盘)。硬盘有不同的大小(通常你不能硬编码“sectorsPerCylinder”之类的东西),这意味着通常你需要编写一个特殊的实用程序来检测正确的值,调整 BPB 中的值,然后安装修改后的引导部门。

In addition, hard disks are normally partitioned. The BIOS (which doesn't know anything about partitions) loads and starts the first sector on the disk, and the first sector (typically called an MBR or Master Boot Record) contains code that checks the partition table for an "active" partition and loads the first sector of that partition (your boot sector). Also note that a partition may be split into more partitions; which means that all boot sectors for hard drives should have a partition table at offset 0x01BE (not just the MBR). Of course because the BIOS doesn't know about partitions it is technically possible to have an unpartitioned hard disk.

于 2012-10-06T06:09:05.237 回答