4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-23 23:47:22 +08:00
Mike Frysinger 0a7bf8fc4c remove +x bit on source files
These should never be marked executable as they have no shebang and
are pure source files.
2022-12-21 22:38:57 -05:00

21 lines
153 B
ArmAsm

.global ___smulhi3
___smulhi3:
lda #0
mult1: ldx <r4
beq done
lsr <r4
bcc mult2
clc
adc <r5
mult2: asl <r5
bra mult1
done: sta <r0
rtl