1471
Axe / Re: [Axe] string help?
« on: March 29, 2013, 05:13:55 am »
Yes because strings are null terminated in AXE
This will add the null automatically.
This code puts this string in ram: "This is a string"[00]"Yet another one Oh hi, missed me"[unknown bytes, so you don't know if it terminates here]
This will add the null automatically.
Code: [Select]
:"This is a string"→Str1P
This code puts this string in ram: "This is a string"[00]"Yet another one Oh hi, missed me"[unknown bytes, so you don't know if it terminates here]
Code: [Select]
:"This is a string"→Str1P
:"Yet another one "
:"Oh hi, missed me"