Posted: Thu May 11, 2006 4:25 am
No, there is no linker needed.
However, my last post was in error. Here is the help screen from TASS.
The /L switch adds a label file, not an assembly listing.
My standard TASS command line looks something like this:
where source.asm is the source file, the binary object file is source.obj, and the assembly listing is source.lst
I use a batch file to call TASS (thats why I was wrong in my earlier post...I didn't have my working TASS computer running and I tried to use my memory... I must remember to expand it from 1kx8 to a 2kx8
)
Here is the batch file:
This way, I can drag a source file from Windows Explorer and drop it on the batch file. The output files are labeled "tass.obj" and "tass.lst" Those get overwritten each time I call TASS.
Hope this clears things up!
Daryl
Code: Select all
Syntax: TASS [options] source [object] [listing]
/?, /h Display this help screen
/w Ignore warning messages
/n Generate nonlinear output file
/c Allow 65C02 mnemonics
/a Convert ASCII to PETASCII
/m Don't put monitor code into listing
/s Don't put source code into listing
/l<name> Generate a file with all labels
My standard TASS command line looks something like this:
Code: Select all
TASS source.asm source.obj source.lst
I use a batch file to call TASS (thats why I was wrong in my earlier post...I didn't have my working TASS computer running and I tried to use my memory... I must remember to expand it from 1kx8 to a 2kx8
Here is the batch file:
Code: Select all
c:
cd\design\tass
tass %1 tass.obj tass.lst
Hope this clears things up!
Daryl