0 Members and 5 Guests are viewing this topic.
Ok I found this Asm(E7FDCB08CEEF9B4AFDCB088E) but it only executes programs in the program menu but I was hoping that I could execute a string instead. Maybe I could create a string and copy it to a temporary program and execute that.
Do the input and prompt commands still work when run through axe?
:"prgmA":asm(hexcode here)
Hello, I'm new here and I need some help of authorized personal:). Ok, first, I'm afraid of overwriting something important in my TI 83's memory.
:.Lowrcase:DiagnosticOff:Lbl 00:ClrHome:3->A:Output(0,1,"Lowercase"):Output(2,3,"On"):Output(2,4,"Off"):Output(2,5,"Quit"):2->B:While 1:Pause 200:Output(1,A,">"):Output(1,B," "):If getKey(1):A->B:A+1->A:End:If getKey(4):A->B:A-1->A:End:If A>5:3->A:5->B:End:If A=3:If getKey(9):Goto ON:End:End:If A=4:If getKey(9):Goto OF:End:End:If A=5:If getKey(9):Goto ST:End:End:End:Lbl ST:ClrHome:Return:Lbl ON:Asm(FDCB24DEC9):ClrHome:Disp "On":Pause 3000:Goto 00:Lbl OF:Asm(FDCB249EC9):ClrHome:Disp "Off":Goto 00