I always use one *.asm file and include other *.asm files.
To do it on the 'right' way, i want to include it with *.inc files. I use the following commands to make *.inc files asm -li st72334.asm asm -li string.asm asm -li mt0080.asm and the assembler replies with: T:\MT0080\Versie04>asm -li string.asm Couldn't open Table file! : No such file or directory T:\MT0080\Versie04>asm -li mt0080.asm STMicroelectronics - Assembler - rel. 4.10 ***** No errors on assembly of 'T:\MT0080\Versie04\mt0080.asm' He tried to find a table file .tab? Must i create it or something? And why wil the assembly of the mt0080.asm going well?
Followed by: TITLE ''string.asm'' MOTOROLA ;Motorola formaat #include ''st72334.inc'' ;included st72334 registers WORDS T_naam DC.B '\n','\r',''MediTop Victory CPU'' T_versie DC.B '\n','\r',''Versie 03'','\n','\r',ETX and so on