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

From WikiTI
Jump to: navigation, search
 
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
[[Category:83Plus:BCALLs:By Name:Display|WPutSEOL]] [[Category:83Plus:BCALLs:By Name|WPutSEOL]] [[Category:83Plus:BCALLs:By Address|4522 - WPutSEOL]]
 
[[Category:83Plus:BCALLs:By Name:Display|WPutSEOL]] [[Category:83Plus:BCALLs:By Name|WPutSEOL]] [[Category:83Plus:BCALLs:By Address|4522 - WPutSEOL]]
 +
{{missinfo|Inputs}}
 
== Synopsis ==
 
== Synopsis ==
 
'''Official Name:''' WPutSEOL
 
'''Official Name:''' WPutSEOL
Line 17: Line 18:
  
 
== Comments ==
 
== Comments ==
This B_CALL never returns to the caller, when you exit the application it will return to the homescreen like it normally does.
+
None
  
 
== Example ==
 
== Example ==
<nowiki>ld hl, Appname
+
  ld hl,str
ld de,progToEdit
+
  ld de,OP1
ld bc,8
+
  ld bc,17
ldir
+
  ldir
B_CALL ExecuteApp
+
  ld hl,OP1
Appname: db "Calcsys "</nowiki>
+
  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.

Latest revision as of 08:54, 6 February 2008

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.