83Plus:BCALLs:4522

From WikiTI
Revision as of 08:54, 6 February 2008 by Luby (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
This article is missing some information (namely Inputs). You can help WikiTI by filling in the missing information.


Synopsis

Official Name: WPutSEOL

BCALL Address: 4522

Displays a string, putting an ellipsis (an ...) on the end of row if needed.

Inputs

  • HL = String to display.

Outputs

None

Destroys

Unknown

Comments

None

Example

 ld hl,str
 ld de,OP1
 ld bc,17
 ldir
 ld hl,OP1
 B_CALL WPutSEOL
 ret
str: db "TextTextTextText",0

Credits and Contributions

  • Kirk Meyer: For hinting on the use of this B_CALL.