0 Members and 1 Guest are viewing this topic.
Do you mean how to use them in Axe code or how they are coded in Asm? I'm sorry, I'm a noob when it comes to programming words and phrases
He's asking for an example method in Axe.
.After you store constants, you create subroutines, like:sub(AA)Repeat getKey(15).Code code codesub(AA).This executes the subroutine.code codeEndReturn.The Return ends the program so that the subroutines aren't executed after the Repeat loop endsLbl AA.Code for subroutineReturn.The label tells the parser where the code for sub(AA) starts, and the Return where it ends
Lbl SUB Copy(r?+r?-1,?8000,r?) and 0?{r?+?8000}Return ?8000Lbl INS If -r? r?-1 End +r?Lbl INL Return!If {?r?} If Equ?String(r?,r?) If {} r?+1 Goto INL End EndReturn r?-r?+1
Can someone show me the routines for them? i tried the ones in the routine section, but it's not working.