Hello to all of you!
I would really appreciate somebody telling me complete step by step tutorial how to work with MASM (or TASM, but I haven't noticed it's free to download)
I've tried myself MASM and TASM (some Telemark assembly, not Borland), but for some reason it won't work, it reports some errors found, and I don't believe code is problem :(
.model small
.stack
.data
message db "Hello world, I'm learning Assembly !!!", "$"
.code
main proc
mov ax,seg message
mov ds,ax
mov ah,09
lea dx,message
int 21h
mov ax,4c00h
int 21h
main endp
end main
Oh yes, I have Intel Centrino Duo processor, Windows XP HE, if it means something.
As I said, I'm newbie to assembly, so I would really appreciate help.
Thank you