I already download MASM but it won't worked. I cannot see the MASM icon needed to compile the program. I downloaded visual 2005 also although I can see the MASM in control panel uninstall program.
.model small
.data
x db "Hello World", '$'
.code
main proc near
mov ax, @data
mov ds, ax
mov ah,09
mov dx, offset x
int 21h
mov ah,4ch
int 21h
main endp
end main
I cannot understand assembly language. They said the above code worked in MASM can someone explain? I tried the code in FASM but it didnt work. Does it mean coding in assembly also depends in assembler you use? I'm stuck.