0 Members and 7 Guests are viewing this topic.
Hah yeah i remember thinking that i was never ever going to use Delvar to delete labels and symbols I like its new use better ^^
Quote from: Quigibo on November 28, 2010, 05:51:02 pmAxe ParserDelta 0.4.6Static data can be stored to variable pointer
Axe ParserDelta 0.4.6Static data can be stored to variable pointer
{====______}
{=========_}
just wondering: is it safe to embed random Asm(E5)'s and Asm(E1)'s into an axe program? (I mean other than the obvious problems of the stack not exiting the same as it entered)btw, E5 and E1 are 'push hl' and 'pop hl', respectivelyIf not, I'm pulling out Mimas...
ok I can avoid using it in calls (or just use 'pop de/pop hl/push de' etc), and using it to store/recall the Ans is exactly what I'm using it for.Also, I'll have a counter so that I know how many items are in the stack at a given time. Also gotta avoid using it in the middle of routines. like no Output(0,0,Asm(E1)>Dec), that'll probably cause an errorEDIT: also, while I'm here, "Str1" is sufficient for a GetCalc( filename, right?
If A=T+Goto PLEndIf A=T-Goto SBEnd...
ok I can avoid using it in calls (or just use 'pop de/pop hl/push de' etc), and using it to store/recall the Ans is exactly what I'm using it for.
On second thought, I could just check a 1-byte value against all my 1-byte tokens, and then, if i got no hits, load the second byte and check all the two-byte tokens...But I don't want to have to look all my tokens up in a table... ah well... tibasicdev has a good table.