hey all, im wondering how you declare a variable in a string. like say i want to declare a string saying "The number should be no less than X" and I want the X to be able to vary depending on what I have the variable for it at.
i tried putting this:
X_VALUE = 20
.data
str1 BYTE "The number should be no less than ",X_VALUE,0
but i get some wierd symbol instead of my number so i know im doing it wrong.