ack/mach/m68k2/libem/exg.s

28 lines
344 B
ArmAsm
Raw Normal View History

1984-12-14 15:41:14 +00:00
.define .exg
.sect .text
.sect .rom
.sect .data
.sect .bss
1984-12-14 15:41:14 +00:00
! d0 : exchange size in bytes
.sect .text
1984-12-14 15:41:14 +00:00
.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