Re: A83: Weird TASM errors
[Prev][Next][Index][Thread]
Re: A83: Weird TASM errors
In a message dated 12/18/99 10:15:11 AM Central Standard Time,
DreAdFaq@gamestats.com writes:
> Here's the situation:
> hl contains the address of one character in the program table
> de contains the address of a byte of free memory
>
> Now I want to copy the character at hl to the address pointed to by de.
I've
> tried about everything, and TASM keeps giving errors like: "Label not found
> (de)" and "unrecognized argument (de,hl)"
>
> I'm clueless, can anybody help me with this?
How about:
ld a, (hl)
ld (de), a
Is that what you are looking for?
Jason_K