1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-27 12:29:33 +00:00
cc65/libsrc/runtime/asleax1.s

20 lines
331 B
ArmAsm

;
; Ullrich von Bassewitz, 06.08.1998
;
; CC65 runtime: Scale the 32 bit primary register by 2
;
.export asleax1, shleax1
.importzp sreg, tmp1
asleax1:
shleax1:
stx tmp1
asl a
rol tmp1
rol sreg
rol sreg+1
ldx tmp1
rts