in1 DWORD ?
mov in1, input("Type to letter: ")
when I type from the keyboard a value, in which format is left stored in the variable in1 (for example in ASCII, HEX, binary or as?).
Thank you mates.
The input macro allocates a 128-byte buffer, copies the input string to the buffer, and returns the address of the buffer. For your example, you could print the string that was input with:
print in1
as micheal said
input stores a pointer to a null terminated ascii string with a size of 128 bytes (max)