0
我在彙編中編寫了一個簡單的「Hello world」程序,並且我想在其中包含一個.inc文件。這個怎麼做?Tasm包含文件
include "windows.inc"
IDEAL
MODEL small
STACK 100h
DATASEG
HelloMessage DB 'Hello, world',13,10,'$'
CODESEG
start:
mov ax,@data
mov ds,ax ;set DS to point to the data segment
mov ah,9 ;DOS print string function
mov dx,OFFSET HelloMessage ;point to "Hello, world"
int 21h ;display "Hello, world"
exit:
mov ah,4ch ;DOS terminate program function
int 21h ;terminate the program
END start
錯誤:代碼無法組裝。此彙編代碼的一個或多個支持文件丟失。
「windows.inc」很可能一些來自MASM32,將與TASM在16位代碼無法正常工作。 –