0 Members and 1 Guest are viewing this topic.
Try this: http://www.ticalc.org/archives/files/fileinfo/268/26877.htmlIt's a really great tutorial and walks you through step-by-step. You can also access it online at http://eeems.omnimaga.org/files/Resources/Tutorials/ASMin28Days/lesson/toc.html.It recommends TASM but I personally prefer Spasm, which was designed for the TI-83 Plus series. Some syntax may be different from that of TASM, however. (Or if you prefer online tools you can try my own ORG IDE )
@echo offcopy c:\asm\source\%1.z80 %1.z80 > nulspasm %1.z80 c:\asm\exec\%1.8xpdel %1.z80 > nultime /T
If you also decide to go with this setup, this is what needs to go in your asm.bat file that you make on the first day. This is because spasm has a different command line syntax than tasm:
I think SPASM is what I will use.But is there any readme or something to learn how to use it?Quote from: thepenguin77 on November 04, 2012, 07:18:20 pmIf you also decide to go with this setup, this is what needs to go in your asm.bat file that you make on the first day. This is because spasm has a different command line syntax than tasm:to be honest I don't really know what this code does and where to put it.(I have only small experience with batch code)
.org number Specifies where in memory the program is loaded into (not exactly true), which is always $9D95.
You also know the absolute location of the start of the program (it's E9D93).