Difference between revisions of "83Plus:BCALLs:497E"
From WikiTI
m |
|||
| (4 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | [[Category:83Plus:BCALLs:By_Name:Display|FormDisp]] [[Category:83Plus:BCALLs:By_Name|FormDisp]] [[Category:83Plus:BCALLs:By_Address|497E - FormDisp]] | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
== Synopsis == | == Synopsis == | ||
| − | '''Official Name:''' | + | '''Official Name:''' FormDisp |
| − | '''BCALL Address:''' | + | '''BCALL Address:''' 497E |
| − | + | ||
| − | + | Displays the value in OP1. | |
=== Inputs === | === Inputs === | ||
| − | * [[83Plus:RAM:8478|OP1]]: | + | * [[83Plus:RAM:8478|OP1]]: Any printable TI-BASIC value. |
| − | + | ||
| − | + | ||
=== Outputs === | === Outputs === | ||
| − | * | + | * Value converted to string and displayed |
| − | + | ||
=== Destroys === | === Destroys === | ||
| − | * | + | *HL,A |
| + | *OP3-OP6 | ||
== Comments == | == Comments == | ||
| − | This B_CALL | + | This B_CALL is essentially equivalent to the BASIC Disp function. |
== Example == | == Example == | ||
| − | + | ld hl,MatAName | |
| − | + | rst rMOV9TOOP1 | |
| − | + | B_CALL FormDisp | |
| − | + | ||
| + | MatAName: | ||
| + | .db MatObj, tVarMat, tMatA | ||
Latest revision as of 07:59, 6 February 2008
Synopsis
Official Name: FormDisp
BCALL Address: 497E
Displays the value in OP1.
Inputs
- OP1: Any printable TI-BASIC value.
Outputs
- Value converted to string and displayed
Destroys
- HL,A
- OP3-OP6
Comments
This B_CALL is essentially equivalent to the BASIC Disp function.
Example
ld hl,MatAName rst rMOV9TOOP1 B_CALL FormDisp MatAName: .db MatObj, tVarMat, tMatA