we stumbled over a syntax-issue in AOD.
BASM interpretes quoted data in bytewise little Endian order
while NASM, RosAsm and afaik also FASM treat them as
literal text strings.
ie: mov eax,'GOOD'
NASM:
B8 47 4F 4F 44
BASM:
B8 44 4F 4F 47
So this is just a question (no need for a change):
Got NASM an option (command-line/directive) to
interprete quoted text data 'not backwards' ?
The manual seem to say No.
__
wolfgang