isnt it an good idea to make an sticky where everyone can post,
simple examples?
or mini tuts
to get peaple started with asm?
like this an masm example:
.model small
.stack
.data
.code
main proc
mov ah,1 ; dos int 21 interupt ah =1 to
int 21h ; get char from standard input with echo result in al.
mov ah,4ch ; program exit
int 21h
main endp
end main