我想使用程序集更改硬盘驱动器的文件系统。 我在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
我在我的操作系统中试过这个例子。调用此函数时它会停止。