Prev: 12951 Up: Map Next: 13015
12997: THE TABLE OF CONSTANTS
Used by the routine at stk_con.
This table holds five useful and frequently needed numbers: zero, one, a half, a half of pi, and ten. The numbers are held in a condensed form which is expanded by the routine at stk_data to give the required floating-point form.
CONSTANTS 12997 DEFB 0,176,0 zero (00 00 00 00 00)
stk_one 13000 DEFB 64,176,0,1 one (00 00 01 00 00)
stk_half 13004 DEFB 48,0 a half (80 00 00 00 00)
stk_pi_2 13006 DEFB 241,73,15,218,162 a half of pi (81 49 0F DA A2)
stk_ten 13011 DEFB 64,176,0,10 ten (00 00 0A 00 00)
Prev: 12951 Up: Map Next: 13015