im using fasm (flat assembler 1.68), and im trying to output a string with int21h/ah=09h
jmp main
msg db "hello world$"
main:
mov dx, msg
mov ah, 09
int 21h
this code outputs "hello world", but it outputs some control characters before it ([SOME WEIRD CONTROL CHARACTERS]hello world)
so how can i fix this?