Difference between revisions of "83Plus:BCALLs:4501"
From WikiTI
m (→Synopsis: clarity) |
m (→Comments: minor reword and link to PutC) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
'''BCALL Address:''' 4501 | '''BCALL Address:''' 4501 | ||
+ | |||
Displays a character on screen in the large font at the current cursor location. | Displays a character on screen in the large font at the current cursor location. | ||
Line 15: | Line 16: | ||
== Comments == | == Comments == | ||
− | This B_CALL | + | This B_CALL displays, in large font, the character stored in A at the current cursor location without advancing the cursor. The [[83Plus:BCALLs:4504|PutC]] entry point is similar except it advances the cursor. |
== Example == | == Example == | ||
Line 26: | Line 27: | ||
[[Category:83Plus:BCALLs:By Name|PutMap]] | [[Category:83Plus:BCALLs:By Name|PutMap]] | ||
[[Category:83Plus:BCALLs:By Name:Text|PutMap]] | [[Category:83Plus:BCALLs:By Name:Text|PutMap]] | ||
− | [[Category:83Plus:BCALLs:By Address|4501]] | + | [[Category:83Plus:BCALLs:By Address|4501 - PutMap]] |
Latest revision as of 08:58, 7 November 2006
Synopsis
Official Name: PutMap
BCALL Address: 4501
Displays a character on screen in the large font at the current cursor location.
Inputs
- A = TI-ASCII code of character to display
Outputs
Destroys
- none
Comments
This B_CALL displays, in large font, the character stored in A at the current cursor location without advancing the cursor. The PutC entry point is similar except it advances the cursor.
Example
Shows É in the upper-left hand corner of the screen:
ld a, LcapEAcute ld hl, $0000 ld (curRow),hl B_CALL PutMap