Author Topic: Best App Compiler  (Read 2267 times)

0 Members and 1 Guest are viewing this topic.

Offline ganpom

  • LV1 Newcomer (Next: 20)
  • *
  • Posts: 8
  • Rating: +0/-0
    • View Profile
Best App Compiler
« 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

Offline willrandship

  • Omnimagus of the Multi-Base.
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2953
  • Rating: +98/-13
  • Insert sugar to begin programming subroutine.
    • View Profile
Re: Best App Compiler
« Reply #1 on: March 26, 2014, 10:21:51 pm »
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.

Offline ganpom

  • LV1 Newcomer (Next: 20)
  • *
  • Posts: 8
  • Rating: +0/-0
    • View Profile
Re: Best App Compiler
« Reply #2 on: March 26, 2014, 11:09:17 pm »
Alright I'll look into it!

Thanks

Offline chickendude

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 817
  • Rating: +90/-1
  • Pro-Riot Squad
    • View Profile
Re: Best App Compiler
« Reply #3 on: March 30, 2014, 10:44:39 am »
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.