Difference between revisions of "83Plus:BCALLs:4522"
From WikiTI
m |
84plusfreak (Talk | contribs) (→Example) |
||
Line 20: | Line 20: | ||
== Example == | == Example == | ||
− | + | ld hl,str | |
− | ld de, | + | ld de,OP1 |
− | ld bc, | + | ld bc,17 |
− | ldir | + | ldir |
− | B_CALL | + | ld hl,OP1 |
− | + | B_CALL WPutSEOL | |
+ | ret | ||
+ | str: db "TextTextTextText",0 | ||
== Credits and Contributions == | == Credits and Contributions == | ||
* '''Kirk Meyer:''' For hinting on the use of this B_CALL. | * '''Kirk Meyer:''' For hinting on the use of this B_CALL. |
Revision as of 23:59, 8 May 2006
Contents
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.