A86: Re: copying BDE to AHL


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

A86: Re: copying BDE to AHL




Heres what I do:

ld a,b
ex de,hl

Only problem is de and hl are exchanged so if you want to fix that just do
this:

ld a,b
push hl
ex de,hl
pop hl

Andres Garcia



-----Original Message-----
From: Muhammed Galadima <mj_galadima@hotmail.com>
To: assembly-86@lists.ticalc.org <assembly-86@lists.ticalc.org>
Date: Saturday, December 20, 1997 10:07 AM
Subject: A86: copying BDE to AHL


>
>This may sound like a really dumb question, but I'm just a beginner...
>
>How do you copy BDE to AHL? i can't just go ld ahl,bde, right? I tried
>ld a,b ld h,d ld e,l but that didn't seem to work...
>
>Thanx,
>Muhammed
>
>______________________________________________________
>Get Your Private, Free Email at http://www.hotmail.com
>


Follow-Ups: