Difference between revisions of "83Plus:BCALLs:44E6"
From WikiTI
		
		
		
m  | 
				|||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| + | [[Category:83Plus:BCALLs:By Name:Memory|StrCat]] [[Category:83Plus:BCALLs:By Name:Text|StrCat]] [[Category:83Plus:BCALLs:By Name|StrCat]] [[Category:83Plus:BCALLs:By Address|44E6 - StrCat]]  | ||
== Synopsis ==  | == Synopsis ==  | ||
'''Official Name:''' StrCat  | '''Official Name:''' StrCat  | ||
| Line 11: | Line 12: | ||
=== Outputs ===  | === Outputs ===  | ||
| − | + | * DE: points to null terminator of concatenated string  | |
| + | * HL: points to null terminator of original string to be concatenated  | ||
=== Registers Destroyed ===  | === Registers Destroyed ===  | ||
| − | + | * AF  | |
== Comments ==  | == Comments ==  | ||
This B_CALL is the same as the standard C function strcat.  | This B_CALL is the same as the standard C function strcat.  | ||
Latest revision as of 20:22, 29 March 2005
Synopsis
Official Name: StrCat
BCALL Address: 44E6
Concatenates (joins) the string pointed by HL to the end of the string pointed pointed by DE.
Inputs
- DE: String to join to
 - HL: String to copy
 
Outputs
- DE: points to null terminator of concatenated string
 - HL: points to null terminator of original string to be concatenated
 
Registers Destroyed
- AF
 
Comments
This B_CALL is the same as the standard C function strcat.