ack/mach/m68k2/libem/exg.s
1984-12-14 15:41:14 +00:00

24 lines
292 B
ArmAsm

.define .exg
! d0 : exchange size in bytes
.text
.exg:
move.l (sp)+,d2 ! return address
move.l sp,a1
sub.w d0,sp
move.l sp,a0
move.w d0,d1
1:
move.w (a1)+,(a0)+
sub #1,d0
bgt 1b
move.l sp,a1
asr #1,d1
1:
move.w (a1)+,(a0)+
sub #1,d1
bgt 1b
move.l a1,sp
move.l d2,-(sp)
rts