Omnimaga
Calculator Community => TI Calculators => ASM => Topic started by: ganpom on March 26, 2014, 10:08:02 pm
-
Hey everyone
I was wondering what the best z80 compiler is for creating apps specifically. If anyone has suggestions that would be great.
Thanks in advance
ganpom
-
The assemblers only differ as far as simple syntax, and even then not by much. Making apps is extremely similar to normal programs, with just a few extra steps.
I recommend Brass. It's a more modern assembler and it's cross-platform.
For making apps, as I said, there are a few extra steps. This means compiling to hex code in the right format, giving it the right header information, as well as signing the resulting output so calculators will accept it as a valid application. Brass has directives for all of these, so it's not much more complicated than making normal assembly programs.
-
Alright I'll look into it!
Thanks
-
Personally i use spasm. I just type "spasm main.asm main.8xk" and the app comes out. Using spasm with apps.inc is really convenient.