Hello,
I'm beginning in Assembly development. When i try to print a word using the variable type DB with the name message, but when i try to execute this program, emu8086 only show me a dialog, not the message, here is an screenshot: http://xs142.xs.to/xs142/09345/imagem568.png
#make_COM#
ORG 100h ; COM file is loaded at CS:0100h
MOV AH, 09h
LEA DX, mensagem
INT 21h
INT 20h
message DB "Test!"
What i have to change in my code?
Thanks,
Nathan Paulino Campos