ack/mach/m68k4/libem/cmu.s
1985-02-07 22:06:32 +00:00

30 lines
429 B
ArmAsm

.define .cmu
! d0 : # bytes of 1 block
.text
.cmu:
movem.l d2/a0/a1/a2,.savreg
move.l (sp)+,a2 ! reta
move.l sp,a0 ! top block
move.l sp,a1
add.l d0,a1 ! lower block
move.l d0,d2
asr.l #2,d0
sub.l #1,d0
move.l #1,d1 ! greater
1:
cmp.l (a0)+,(a1)+
bne 2f
dbf d0,1b
clr.l d1 ! equal
2:
bcc 3f
neg.l d1 ! less
3:
asl.l #1,d2
add.l d2,sp ! new sp
move.l a2,-(sp)
movem.l .savreg,d2/a0/a1/a2
rts
.align 2