Prev: 3297 Up: Map Next: 32D7
32C5: 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 32C5 DEFB $00,$B0,$00 zero (00 00 00 00 00)
stk_one 32C8 DEFB $40,$B0,$00,$01 one (00 00 01 00 00)
stk_half 32CC DEFB $30,$00 a half (80 00 00 00 00)
stk_pi_2 32CE DEFB $F1,$49,$0F,$DA,$A2 a half of pi (81 49 0F DA A2)
stk_ten 32D3 DEFB $40,$B0,$00,$0A ten (00 00 0A 00 00)
Prev: 3297 Up: Map Next: 32D7