Difference between revisions of "AMOSi:Poke$"

From Amiga Coding
Jump to: navigation, search
m (1 revision(s))
 
m (1 revision(s))
 
(No difference)

Latest revision as of 01:51, 17 November 2007

Takes a source string and copies it directly to your chosen memory locations, a character at a time.


POKE$ address, string$


address holds the address of the first byte to be loaded with your new string data. The copying operation will continue until AMOS reaches the last character in your source string. Therefore, the end address will be:


address+Len(string$)-1