Difference between revisions of "83Plus:BCALLs:44E3"

From WikiTI
Jump to: navigation, search
m (Added categories)
m
 
Line 1: Line 1:
[[Category:83Plus:BCALLs:By Name:Memory|StrCpy]]
+
[[Category:83Plus:BCALLs:By Name:Memory|StrCpy]] [[Category:83Plus:BCALLs:By Name:Text|StrCpy]] [[Category:83Plus:BCALLs:By Name|StrCpy]] [[Category:83Plus:BCALLs:By Address|44E3 - StrCpy]]
[[Category:83Plus:BCALLs:By Name:Text|StrCpy]]
+
[[Category:83Plus:BCALLs:By Name|StrCpy]]
+
[[Category:83Plus:BCALLs:By Address|44E3 - StrCpy]]
+
 
== Synopsis ==
 
== Synopsis ==
 
'''Official Name:''' StrCpy
 
'''Official Name:''' StrCpy

Latest revision as of 21:56, 29 March 2005

Synopsis

Official Name: StrCpy

BCALL Address: 44E3

Copies a null-terminated string from one location to another.

Inputs

  • DE: address to copy the string to
  • HL: string to copy

Outputs

  • DE: points to null terminator of destination string
  • HL: points to null terminator of source string

Registers Destroyed

  • AF

Comments

This B_CALL is basically the same as the standard C function strcpy.