83Plus:BCALLs:4AD7

From WikiTI
Revision as of 15:20, 3 August 2012 by Matref (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Synopsis

Official name: rclAns

BCALL adress: 4AD7

Stores the content of Ans in OP1 (and OP2 in case of a complex number).

Inputs

None.

Outputs

  • OP1: contains the real value of Ans.
  • OP2: contains the imaginary value of Ans (if there is any).

Destroys

  • AF
  • BC
  • DE
  • HL

Example

 b_call _rclAns
 ld a,5
 b_call _dispOp1a
 ret