05-20-2013, 06:38 PM
this doesnt compile because the label is made outside of ASM tags
im trying to print the value of the byte at the address, but also modify it in assembly
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