When using the MOV mnemonic to load/copy a string to a memory register in MASM, are the characters stored in reverse order?

Don’t use strings in contexts where MASM expects a 16-bit or larger integer. MASM will convert them to integers in a way that reverses the order of characters when stored in memory. Since this is confusing it’s best to avoid this, and only use strings with the DB directive, which works as expected. Don’t use … Read more