A86: beginner Quesion


[Prev][Next][Index][Thread]

A86: beginner Quesion




    I'm very new at assembly programing so forgive me if I ask some
questions that may seem dumb. Here's my problem, I am trying to make a
program that allows you to move a string around the screen with the
arrows, but it isn't working correctly. It doesn't move the way I want
it to. here's a part of my code:

down:
 call _clrLCD
 ld a,(_curCol)
 inc a
 ld (_curCol),a
 ld hl,string
 call _puts
 jr loop



Follow-Ups: