ack/mach/i80/libem/rol4.s

53 lines
569 B
ArmAsm
Raw Normal View History

1985-03-18 12:46:51 +00:00
.define .rol4
1987-01-28 18:57:04 +00:00
.sect .text
.sect .rom
.sect .data
.sect .bss
.sect .text
1985-03-18 12:46:51 +00:00
! Rotate 4 bytes left
! Expects in de-reg: number of rotates
! Expects on stack: operand
! Yields on stack: result
1987-01-28 22:23:14 +00:00
.rol4: pop h
1985-03-18 12:46:51 +00:00
shld .retadr
mov h,b
mov l,c
shld .bcreg
1987-01-28 22:54:52 +00:00
pop h ! low-order bytes of operand
1985-03-18 12:46:51 +00:00
pop b ! high order bytes of operand
mov a,e
ani 31
jz 2f
mov e,a
mov a,b
1: ral
mov a,l
1985-03-18 12:46:51 +00:00
ral
mov l,a
mov a,h
ral
mov h,a
mov a,c
ral
mov c,a
mov a,b
ral
mov b,a
dcr e
jnz 1b ! keep looping
2: push b
push h
lhld .bcreg
mov b,h
mov c,l
lhld .retadr
pchl