A83: Re: Re: Op1 to a


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

A83: Re: Re: Op1 to a




Ahh, Iknow this. OP s are really just spaces in memory that you can use to
store stuff, or to use with some calls. To get at the first byte of op1 to a
try this.....
ld hl, OP1
ld a, (hl)

This should work. Correct me if I'm wrong.
To get the second byte do this
ld hl, OP1
inc hl
ld a, (hl)
Get it?
>From Conway


-----Original Message-----
From: Trey Jazz <joemama@minot.com>
To: assembly-83@lists.ticalc.org <assembly-83@lists.ticalc.org>
Date: Sunday, 24 May 1998 10:18
Subject: A83: Re: Op1 to a


>
>it would be hard to do since op1 is 11 bytes long and a is one byte
>
>>How do you store Op1 to a?  I can't figure out how, but I need to!
>>
>>Paul
>>
>