so this is an axe source file:
prgmASRC
:.MPREV
:prgmMUSEINC
:GetCalc("varN")→A
:GetCalc("varO")→B
:GetCalc("varP")→C
:float{A}→N
:float{B}→O
:float{C}→P
:PM(N,O,P
:prgmMUSERT
prgmMUSEINC contains the list of wavelengths and Lbl PM contains the routine that plays the note accordingly.
It works if I run it on homescreen, but not in this program(TI-BASIC)
{data.....}→L1
For(G,0,15
L1(3G)→N
L1(3G+1)→O
L1(3G+2)→P
Asm(prgmMPREV
End
It seems to skip asm program
What's wrong with this?