Цитата Сообщение от 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