Author Topic: Small C Compiler for TI-83+  (Read 14668 times)

0 Members and 1 Guest are viewing this topic.

Liazon

  • Guest
Small C Compiler for TI-83+
« Reply #45 on: January 20, 2006, 05:09:00 am »
QuoteBegin-Liazon+18 January 2006, 15:59-->
QUOTE (Liazon @ 18 January 2006, 15:59)
API will bloat your code if you use everything.

*points

Come to think of it, all of the routines are a compilation of the best of the best well known routines.  Using it parts of it (not necessarily with macros) will definitely improve anybody's ASM program.  Granted, you will never understand how they work, but it's a lot of good routines.

Most notable routines that I hope to use for DEM:

Sigma's sprite routines; masked, AND, OR, and XOR logic
Jim e's RGP

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Small C Compiler for TI-83+
« Reply #46 on: January 20, 2006, 02:33:00 pm »
i guess the trick is to use as less routines as possible with api, right?
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline Ranman

  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1354
  • Rating: +83/-0
    • View Profile
Small C Compiler for TI-83+
« Reply #47 on: January 20, 2006, 02:59:00 pm »
QuoteBegin-xlibman+20 January 2006, 20:33-->
QUOTE (xlibman @ 20 January 2006, 20:33)
i guess the trick is to use as less routines as possible with api, right?  

 Well... I guess... use what you need to use.

If you need to use it, then you need to use it. If you don't use it, then you will have to code your own function to do the same thing. If you can make it faster or take less memory... then maybe going with your own function is the better choice. :)smile.gif
Ranman
Bringing Randy Glover's Jumpman to the TI-89 calculator. Download available at Ticalc.

Liazon

  • Guest
Small C Compiler for TI-83+
« Reply #48 on: January 21, 2006, 04:01:00 am »
But I can't think of me, an ASM newbie, coding a sprite routine faster than sigma's or Jim e's RGP.

if sigma's routine is faster, why not replace ionPutSprite with it?