Here you can share assembly code snippets for the YASM assembler and you can also help people with their YASM assembly programming and share 32-bit apps. :) I also have a problem when I do this (It is supposed to generate a very simple hello in the cmd(DOS/command.com/command prompt):
MOV AH,09
MOV DX,text
INT 21h
MOV AH,4Ch
MOV AL,0; Exit code 0
INT 21h
text: db "Hello!",24h; 24h = "$"
Thanks in advance!