Skip to content

Commit 8711c6f

Browse files
committed
use explicit destination operands
1 parent fe2eb22 commit 8711c6f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/libc/fmal.src

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ _fmal:
1111
add iy, sp
1212
ld a, (iy + 28)
1313
rlca
14-
and 1
14+
and a, 1
1515
ld (iy + 11), a ; signC
1616
ld a, (iy + 10)
1717
xor a, (iy + 19)
1818
rlca
19-
and 1
19+
and a, 1
2020
ld (iy + 20), a ; signZ
2121
jp _softfloat_mulAddF64
2222

src/libc/sqrtl.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ _sqrtl:
1111
add hl, sp
1212
ld a, (hl)
1313
rlca
14-
and 1
14+
and a, 1
1515
inc hl
1616
ld (hl), a
1717
jp ___f64_sqrt

0 commit comments

Comments
 (0)