0

我想使用程序集更改硬盘驱动器的文件系统。我在http://www.ctyme.com/intr/int-13.htm中找到了固定磁盘格式轨道,但我无法理解。

;not succesful
mov ax,0
mov es,ax
mov ah,05h
mov al,08h
mov ch,01h
mov dh,00h
mov dl,80h
mov bx,type
int 13h
cmp ah,00
jne error
suc:
ret
error:
hlt
type:
dw 00,00,08,03

我已经在我的操作系统中尝试过这个例子。调用此函数时它将停止。

4

0 回答 0