Re: A86: beginner Quesion
[Prev][Next][Index][Thread]
Re: A86: beginner Quesion
You'll have to paste the whole code or at least give a more detailed
description of the problem if you want anybody to help. One little snippet
of code is rarely enough to diagnose 1.what a problem is and 2.how to fix it.
In a message dated 2/24/00 5:17:17 PM Eastern Standard Time,
cws@madison.tds.net writes:
> 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
----
Jonah Cohen
<ComAsYuAre@aol.com>
http://linux.hypnotic.org/~jonah/
Follow-Ups: