0 Members and 10 Guests are viewing this topic.
This might have been asked before, but it would be nice to be able to put code inline. That way, if you're only executing the routines once, you can save the 15 byte call.
6.15MHz and 15.4MHz (which is about how fast my TI-84+SE runs I believe).
I'd like to request de-referencing routines, so I could dereference a label, or (even better) dereference something like DispGraph.
Could there be a 2nd line routine for those who absolutely want clipped ones? Or maybe someone could write an Axiom.
new "EndIf" and "End!If" instructions
@Runner, I was thinking of having "While 1" and "Repeat 0" to auto optimize to no code at all so that would take care of the Do part. The end condition might work if I add new "EndIf" and "End!If" instructions (which only work on while/repeat loops). It would be pretty cool too because it would mean you can have pre-check and post-check for the same loop! Something I haven't seen yet in other languages...
Start: ld a,i push af diEnd: pop af ret po ei ret
Start: ex af,af' push af ld a,i push af diEnd: pop af ex af,af' pop af ex af,af' ret po ei ret