0 Members and 7 Guests are viewing this topic.
Quote from: kindermoumoute on October 13, 2010, 04:47:54 pmI do not know if it's already been asked, but it would be nice to compile a program Axe Parser in ASM/Ion TI-83 (from the calculator or computer).Is it possible?I've been thinking of writing a program to do this, I'll get back to you on it later.
I do not know if it's already been asked, but it would be nice to compile a program Axe Parser in ASM/Ion TI-83 (from the calculator or computer).Is it possible?
is there a way you could let getKey() take a variable as an argument? so getKey(A) would be valid. it'd help if you wanted to let the user configure his controls.
ld hl,(A)push hlld hl,(L?+4)pop deadd hl,de
ld hl,(A)ld de,(L?+4)add hl,de
p_DispHex: .db __DispHexEnd-$-1 ld c,h call __DispHexByte ld c,l__DispHexByte: ld a,c rra rra rra rra call __DispHexNib ld a,c__DispHexNib: or F0h daa add a,A0h adc a,40h B_CALL(_PutC) ret__DispHexEnd:p_TextHex: .db __TextHexEnd-$-1 ld c,h call __TextHexByte ld c,l__TextHexByte: ld a,c rra rra rra rra call __TextHexNib ld a,c__TextHexNib: or F0h daa add a,A0h adc a,40h B_CALL(_VPutMap) ret__TextHexEnd:
Quote from: Deep Thought on October 09, 2010, 06:29:05 pmNot that important, but a length()r would come in handy for me.Would that search backwards from a pointer? I think that could be useful.
Not that important, but a length()r would come in handy for me.
.PROGRAM Description.[16*16 hex icon][i]program code[/i]
Hex display, definitely Either ▸Rect or ▸Polar would work.And this:Quote from: ztrumpet on October 10, 2010, 12:35:53 pmQuote from: Deep Thought on October 09, 2010, 06:29:05 pmNot that important, but a length()r would come in handy for me.Would that search backwards from a pointer? I think that could be useful.
Asm(AF474FEDB921FFFFED42)
If you urgently need a routine for that, you could do it with the following assembly:Code: [Select]Asm(AF474FEDB921FFFFED42)Just put the pointer value right before that.