83Plus:BCALLs:4501

From WikiTI
Revision as of 09:58, 7 November 2006 by Dan Englender (Talk | contribs)

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

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