Difference between revisions of "83Plus:BCALLs:4501"

From WikiTI
Jump to: navigation, search
m (My bad. That's what the preview button is for.)
m (cat fix)
Line 27: 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]]

Revision as of 12:19, 25 May 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 outputs the character stored in A at the current cursor location without changing the cursor. It uses the large font.

Example

Shows É in the upper-left hand corner of the screen:

ld a, LcapEAcute
ld hl, $0000
ld (curRow),hl
B_CALL PutMap