Hello:
I have a begginer question. If I want to displace a memory address a known number of times, I have tried that (snippet):
ld de, texto ld b, 4 loop_incrementar_posicion_memoria: inc de djnz loop_incrementar_posicion_memoria texto: db "Hola!" ;5 caracteres
It works, but I wonder if I have a long number of iterations, I would be a problem, and then, I was working what is the properly way to displace n times a memory address.
Thank you in advance
Aangemeld of registreer om reacties te plaatsen