2013-05-20, 11:44 PM
slenkar Wrote:this doesnt compile because the label is made outside of ASM tags
Code:function FASTCALL drawthis() as ubyte asm LD A,(landscapeeightiter) INC A LD (landscapeeightiter),A end asm end function for x=0 to 20 drawthis() Print AT x,0;STR(PEEK(@landscapeeightiter))+"-" next STOP landscapeeightiter: ASM defb 100 END ASM
im trying to print the value of the byte at the address, but also modify it in assembly
At the moment you can try in assembler:
Code:
DIM a as Ubyte
...
LD a, (_variableName)This only works for *global* variables.

