evodevo
evodevo

Reputation: 509

Tasm can't locate include file

In my program.asm I include file with the tasm directive

include "file.asm"

however I get an error "Can't locate file file.asm". The file is in the same directory as the source code which is D:\source. Tasm is in directory D:\tasm. I tried to create file TASM.CFG in the tasm/bin directory with the line /iD:\source but that didn't help. I also tried to move the file.asm into the tasm/bin directory, that also didn't help. I also tried to specify the full path in the include directive

include "D:\source\file.asm"

that also didn't help.

Upvotes: 4

Views: 4081

Answers (1)

StuartLC
StuartLC

Reputation: 107387

Note that the MASM syntax for include is simply include file.asm i.e. without the quotes. AFAIK MASM is the default mode for TASM

Reference page 37 and 39 of the TASM 5 users guide

Upvotes: 5

Related Questions