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

36 lines
364 B
ArmAsm

.global ___sdivhi3
___sdivhi3:
lda <r4
ldx <r5
ldy #0 !flag positive result
rol a
ror a
bpl L10
iny !flag negative result
eor #0xFFFF
inc a
L10: pha
txa
bpl L20
dey !flag negative/positive result
eor #0xFFFF
inc a
tax
L20: pla
phy
jsr >udv
ply
beq Lend !if positive result
eor #0xFFFF !negate result
inc a
Lend: sta <r0
rtl