因此,工作正常且生成512位文件的代码如下所示
org 07c00h
mov ax, cs
mov ds, ax
mov es, ax
call DispStr
jmp $
DispStr:
mov ax, BootMessage
mov bp, ax
mov cx, 16
mov ax, 01301h
mov bx, 000ch
mov dl, 0
int 10h
ret
BootMessage: db "Hello, OS world!"
times 510-($-$$) db 0
dw 0xaa55
然后我添加几行,bin文件是540位,这没有任何意义,解决这个问题的唯一方法是做380 db 0,我做计算
无意义的代码如下:
[BITS 16]
[ORG 0x7c00]
jmp Main
PrintTill0:
lodsb
cmp al,0
je Return
mov ah,0eh
int 10h
jmp PrintTill0
PrintWithLength:
mov ah,13h
int 10h
jmp Return
Return:
ret
Main:
mov si,msg1
call PrintTill0
cli
push SEGment msg2
pop es
mov bp,msg2
sti
loop1:
mov cx,9
call PrintWithLength
inc bl
jmp loop1
cli
hlt
msg1: db "Hello, AInoob~~~",0Dh,0Ah,"The future is in your hand, so, what do you want to do?",0Dh,0Ah,0h
msg2: db "AInoob~~~"
times 510-($-$$) db 0
dw 0xAA55
谁能告诉我发生了什么?这真让我疯狂
答案 0 :(得分:1)
您好像试图将msg2
的细分基础存储到es
,而您正在寻找的关键字只是SEG
,而不是{ {1}}。不幸的是,平面二进制输出不支持这一点,因此您需要一个不同的解决方案。
相反,由于您知道SEGMENT
不会超出地址msg2
,因此您只需将0x10000
设置为零:
es