-
Notifications
You must be signed in to change notification settings - Fork 2
/
fixed12_math.h
169 lines (127 loc) · 1.74 KB
/
fixed12_math.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#ifndef FIXED12_MATH_H
#define FIXED12_MATH_H
int shift_right12(long v)
{
__asm
;ld l,(ix+4)
ld h,(ix+5)
ld e,(ix+6)
ld d,(ix+7)
sra d
rr e
rr h
sra d
rr e
rr h
sra d
rr e
rr h
sra d
rr e
rr h
ld l,h
ld h,e
__endasm;
}
int fixed12_mpl(int x,int y)
{
__asm
ld e,(ix+6)
ld d,(ix+7)
ld c,(ix+4)
ld b,(ix+5)
call mpl_signed_bc_de_to_de_hl
; round de:hl
ld bc,2048
add hl,bc
jr nc,mpl_no_de_inc
inc de
mpl_no_de_inc:
sra d
rr e
rr h
sra d
rr e
rr h
sra d
rr e
rr h
sra d
rr e
rr h
ld l,h
ld h,e
__endasm;
}
long mpl_2int_to_long(int x,int y)
{
__asm
ld e,(ix+6)
ld d,(ix+7)
ld c,(ix+4)
ld b,(ix+5)
call mpl_signed_bc_de_to_de_hl
jp mpl_done
mpl_signed_bc_de_to_de_hl:
ld a,d
xor a,b
push af
bit 7,d
jr z,mpl_not_neg_de
xor a
sub e
ld e,a
sbc a,a
sub d
ld d,a
mpl_not_neg_de:
bit 7,b
jr z,mpl_not_neg_bc
xor a
sub c
ld c,a
sbc a,a
sub b
ld b,a
mpl_not_neg_bc:
ld hl,0
sla e ; optimised 1st iteration
rl d
jr nc,mpl_loop_start
ld h,b
ld l,c
mpl_loop_start:
ld a,15
mpl_lp:
add hl,hl ; unroll 1 times
rl e ; ...
rl d ; ...
jr nc,mpl_end ; ...
add hl,bc ; ...
jr nc,mpl_end ; ...
inc de ; ...
mpl_end:
dec a
jr NZ,mpl_lp
pop af
bit 7,a
jr z,mpl_no_neg_res
xor a
ld b,a
sub l
ld l,a
ld a,b
sbc h
ld h,a
ld a,b
sbc e
ld e,a
ld a,b
sbc d
ld d,a
mpl_no_neg_res:
ret
mpl_done:
__endasm;
}
#endif // FIXED12_MATH_H