How does one convert an integer to a string using the Nasm preprocessor? For example, consider the following code:
%define myInt 65
%define myString 'Sixty-five is ', myInt
The symbol myString will evaluate to Sixty-five is A. The desired result is Sixty-five is 65. How can I achieve this? It seems like such a trivial question, but the Nasm documentation has yielded nothing. Thanks!