-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMathsFunctions.asm
More file actions
222 lines (183 loc) · 10 KB
/
MathsFunctions.asm
File metadata and controls
222 lines (183 loc) · 10 KB
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
;;<< (REAL) MATHS FUNCTIONS
;;< Including ^ and random numbers
;;========================================================================
;; variable PI
;PI
;Returns the closest available representation of PI - 3.1415926534683
variable_PI: ;{{Addr=$d51d Code Calls/jump count: 0 Data use count: 1}}
push hl ;{{d51d:e5}}
call set_accumulator_type_to_real;{{d51e:cd41ff}}
call get_accumulator_type_in_c_and_addr_in_HL;{{d521:cd45ff}}
call REAL_PI ;{{d524:cd9abd}}
pop hl ;{{d527:e1}}
ret ;{{d528:c9}}
;;========================================================================
;; command DEG
;DEG
;Set degrees mode
command_DEG: ;{{Addr=$d529 Code Calls/jump count: 0 Data use count: 1}}
ld a,$ff ;{{d529:3eff}}
jr _command_rad_1 ;{{d52b:1801}} (+$01)
;;========================================================================
;; command RAD
;RAD
;Set radians mode
command_RAD: ;{{Addr=$d52d Code Calls/jump count: 0 Data use count: 1}}
xor a ;{{d52d:af}}
_command_rad_1: ;{{Addr=$d52e Code Calls/jump count: 1 Data use count: 0}}
jp SET_ANGLE_MODE ;{{d52e:c397bd}} maths: set angle mode
;;========================================================
;; function SQR
;SQR(<numeric expression>)
;Returns the square root of the value
function_SQR: ;{{Addr=$d531 Code Calls/jump count: 0 Data use count: 1}}
ld bc,REAL_SQR ;{{d531:019dbd}}
jr read_real_param_and_validate;{{d534:1816}} (+$16)
;;========================================================
;; infix power ^
infix_power_: ;{{Addr=$d536 Code Calls/jump count: 0 Data use count: 1}}
push hl ;{{d536:e5}}
push bc ;{{d537:c5}}
call function_CREAL ;{{d538:cd14ff}}
ex de,hl ;{{d53b:eb}}
ld hl,power_operator_parameter;{{d53c:21b2ad}}
call REAL_copy_atDE_to_atHL;{{d53f:cd61bd}}
pop bc ;{{d542:c1}}
ex (sp),hl ;{{d543:e3}}
ld a,c ;{{d544:79}}
call copy_atHL_to_accumulator_type_A;{{d545:cd6cff}}
pop de ;{{d548:d1}}
ld bc,REAL_POWER ;{{d549:01a0bd}}
;;+-----------------
;; read real param and validate
read_real_param_and_validate: ;{{Addr=$d54c Code Calls/jump count: 8 Data use count: 0}}
call read_real_param ;{{d54c:cd59d5}}
ret c ;{{d54f:d8}}
jp z,division_by_zero_error;{{d550:cab5cb}}
jp m,overflow_error ;{{d553:fabecb}}
jp Error_Improper_Argument;{{d556:c34dcb}} Error: Improper Argument
;;= read real param
read_real_param: ;{{Addr=$d559 Code Calls/jump count: 1 Data use count: 0}}
push bc ;{{d559:c5}}
push de ;{{d55a:d5}}
call function_CREAL ;{{d55b:cd14ff}}
pop de ;{{d55e:d1}}
ret ;{{d55f:c9}}
;;========================================================
;; function EXP
;EXP(<numeric expression>)
;Exponential. Calculates e to the given power.
;Values over 88 will overflow and raise an error.
;Values much less than -88.7 will underflow and return 0
function_EXP: ;{{Addr=$d560 Code Calls/jump count: 0 Data use count: 1}}
ld bc,REAL_EXP ;{{d560:01a9bd}}
jr read_real_param_and_validate;{{d563:18e7}} (-$19)
;;========================================================
;; function LOG10
;LOG10(<numeric expression>)
;Returns the base 10 logarithm of the value, which must be greater than zero
function_LOG10: ;{{Addr=$d565 Code Calls/jump count: 0 Data use count: 1}}
ld bc,REAL_LOG_10 ;{{d565:01a6bd}}
jr read_real_param_and_validate;{{d568:18e2}} (-$1e)
;;========================================================
;; function LOG
;LOG(<numeric expression>)
;Returns the natural logarithm of the expression, which must be greater than 0.
function_LOG: ;{{Addr=$d56a Code Calls/jump count: 0 Data use count: 1}}
ld bc,REAL_LOG ;{{d56a:01a3bd}}
jr read_real_param_and_validate;{{d56d:18dd}} (-$23)
;;========================================================
;; function SIN
;SIN(<numeric expression>)
;Returns sine of expression
function_SIN: ;{{Addr=$d56f Code Calls/jump count: 0 Data use count: 1}}
ld bc,REAL_SINE ;{{d56f:01acbd}}
jr read_real_param_and_validate;{{d572:18d8}} (-$28)
;;========================================================
;; function COS
;COS(<numeric expression>)
;Calculates the cosine of the given value
function_COS: ;{{Addr=$d574 Code Calls/jump count: 0 Data use count: 1}}
ld bc,REAL_COSINE ;{{d574:01afbd}}
jr read_real_param_and_validate;{{d577:18d3}} (-$2d)
;;========================================================
;; function TAN
;TAN(<numeric expression>)
;Returns the tangent of the expression.
function_TAN: ;{{Addr=$d579 Code Calls/jump count: 0 Data use count: 1}}
ld bc,REAL_TANGENT ;{{d579:01b2bd}}
jr read_real_param_and_validate;{{d57c:18ce}} (-$32)
;;========================================================
;; function ATN
;ATN(<numeric expression>)
;Returns the arctangent of the supplied value
function_ATN: ;{{Addr=$d57e Code Calls/jump count: 0 Data use count: 1}}
ld bc,REAL_ARCTANGENT;{{d57e:01b5bd}}
jr read_real_param_and_validate;{{d581:18c9}} (-$37)
;;========================================================================
;; random number seed message
random_number_seed_message: ;{{Addr=$d583 Data Calls/jump count: 0 Data use count: 1}}
defb "Random number seed ? ",0
;;========================================================================
;; command RANDOMIZE
;RANDOMIZE [<numeric expression>]
;Sets the initial value for the random number generator
;If no value is given prompts the user for one.
command_RANDOMIZE: ;{{Addr=$d599 Code Calls/jump count: 0 Data use count: 1}}
jr z,random_seed_prompt;{{d599:2806}} (+$06) Do we have inline parameter, if not prompt for input
call eval_expression ;{{d59b:cd62cf}} if so read it
push hl ;{{d59e:e5}} Save code ptr
jr dorandomize ;{{d59f:1818}} (+$18)
;;=random seed prompt
random_seed_prompt: ;{{Addr=$d5a1 Code Calls/jump count: 1 Data use count: 0}}
push hl ;{{d5a1:e5}} Save code ptr
;;=random seed loop
random_seed_loop: ;{{Addr=$d5a2 Code Calls/jump count: 2 Data use count: 0}}
ld hl,random_number_seed_message;{{d5a2:2183d5}} ; "Random number seed?" message
call output_ASCIIZ_string;{{d5a5:cd8bc3}} ; display 0 terminated string
call prob_read_buffer_and_or_break;{{d5a8:cdecca}} Key input text
call output_new_line ;{{d5ab:cd98c3}} ; new text line
call convert_string_to_number;{{d5ae:cd6fed}} Validate/convert to a number
jr nc,random_seed_loop;{{d5b1:30ef}} (-$11) Loop if invalid
call skip_space_tab_or_line_feed;{{d5b3:cd4dde}} skip space, lf or tab
or a ;{{d5b6:b7}}
jr nz,random_seed_loop;{{d5b7:20e9}} (-$17) Loop if invalid
;;=do_randomize
dorandomize: ;{{Addr=$d5b9 Code Calls/jump count: 1 Data use count: 0}}
call function_CREAL ;{{d5b9:cd14ff}} Convert to a real
call REAL_RANDOMIZE_seed;{{d5bc:cdbebd}} Firmware: RANDOMIZE seed
pop hl ;{{d5bf:e1}} Retrieve code ptr
ret ;{{d5c0:c9}}
;;========================================================================
;; variable RND
;RND[(<numeric expression>)]
;Returns a random number <= value < 1
;With no argument or a value >= 0 returns a new random number
;With a value = 0 returns a copy of the last random number
;With a value < 0 starts a new sequence based on that value and
;returns the first value in that sequence
variable_RND: ;{{Addr=$d5c1 Code Calls/jump count: 0 Data use count: 1}}
ld a,(hl) ;{{d5c1:7e}} Do we have a parameter?
cp $28 ;{{d5c2:fe28}} '('
jr nz,rnd_generate ;{{d5c4:201b}} If not return simple value
call get_next_token_skipping_space;{{d5c6:cd2cde}} get next token skipping space
call eval_expression ;{{d5c9:cd62cf}}
call next_token_if_close_bracket;{{d5cc:cd1dde}} check for close bracket
push hl ;{{d5cf:e5}}
call function_CREAL ;{{d5d0:cd14ff}}
call REAL_SIGNUMSGN ;{{d5d3:cd94bd}} Is parameter +ve, zero or -ve?
jr nz,rnd_param_nonzero;{{d5d6:2005}} (+$05) Non-zero
call REAL_rnd0 ;{{d5d8:cd8bbd}} If zero, return copy of previous value
pop hl ;{{d5db:e1}}
ret ;{{d5dc:c9}}
;;=rnd param non-zero
rnd_param_nonzero: ;{{Addr=$d5dd Code Calls/jump count: 1 Data use count: 0}}
call m,REAL_RANDOMIZE_seed;{{d5dd:fcbebd}} If parameter is negative, new random seed
pop hl ;{{d5e0:e1}}
;;=rnd generate
rnd_generate: ;{{Addr=$d5e1 Code Calls/jump count: 1 Data use count: 0}}
push hl ;{{d5e1:e5}}
call set_accumulator_type_to_real_and_HL_to_accumulator_addr;{{d5e2:cd3eff}}
call REAL_RND ;{{d5e5:cd7fbd}}
pop hl ;{{d5e8:e1}}
ret ;{{d5e9:c9}}