The itoa instruction converts an integer to an ASCII string.
Synopsis
itoa(ctype.dst, type.src)
Description
The itoa instruction converts a numeric type.src value to a null-terminated character string stored starting at ctype.dst.
Example
In the following example, a numeric value in r.2 is written at the address labeled ISIZE as a null-terminated character string.
itoa(ch.ISIZE,r.2)