Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!sdd.hp.com!wuarchive!psuvax1!psuvm!dxb132 From: DXB132@psuvm.psu.edu Newsgroups: comp.sys.amiga Subject: Re: An Assembler question Message-ID: <90334.154909DXB132@psuvm.psu.edu> Date: 30 Nov 90 20:49:09 GMT References: <3534@orbit.cts.com> Organization: Penn State University Lines: 16 In article <3534@orbit.cts.com>, koleman@pnet51.orb.mn.org (Kurt Koller) says: >Ok, I have the following line: >; move.b mt_data+$3b7,mt_songpos >And I want to make it a "good, pc-realative" set of instructions. This didn't Try this: move.l a0,-(a7) lea mt_songpos(pc),a0 move.b mt_data+$3b7(pc),(a0) move.l (a7)+,a0 -- Dan Babcock