我正在尝试根据NASM 手册.EXE
中的示例组装和链接以下程序( , not .COM
):
segment data
hello: db "hello",13,10,"$"
segment code
..start:
mov ax,data
mov ds,ax
mov ax,stack
mov ss,ax
mov sp,stacktop
mov dx,hello
mov ah,9
int 0x21
mov ax,0x4c00
int 0x21
segment stack stack
resb 64
stacktop:
我使用以下命令进行组装(在标准输出上不产生任何内容,但会生成test.obj
):
nasm -Wall -f obj test.asm
并使用以下命令链接(这是 OpenWatcom 1.9 WLINK):
wlink name test.exe format dos file test.obj
这给了我以下输出(包括警告):
Open Watcom Linker Version 1.9
Portions Copyright (c) 1985-2002 Sybase, Inc. All Rights Reserved.
Source code is available under the Sybase Open Watcom Public License.
See http://www.openwatcom.org/ for details.
loading object files
Warning! W1014: stack segment not found
creating a DOS executable
手册指出:
上面的代码声明了一个包含 64 字节未初始化堆栈空间的堆栈段,并在其顶部指向 `stacktop`。指令段堆栈堆栈定义了一个称为`stack`的段,也是`STACK`类型。后者对于程序的正确运行不是必需的,但是如果您的程序没有“STACK”类型的段,链接器可能会发出警告或错误。
我错过了什么?