
Сообщение от
NEO SPECTRUMAN
Code:
Код:
cnt = 0
ld a,b : cnt = cnt + 4
and $70 : cnt = cnt + 7
This should work, except `cnt` is symbol (label), so it must start at the beginning of line, like this:
Код:
cnt = 0
ld a,b
cnt = cnt + 4
and $70
cnt = cnt + 7