New Member
Group: Members
Posts: 1
Member No.: 60552
Joined: 16-November 13
|
.code ; Tell MASM where the code starts ; ���������������������������������������������������������������������
start: ; The CODE entry point to the program call main ; branch to the "main" procedure exit ; ����������������������������������������������������������������������
main proc print chr$("Hi, I am in the 'main' procedure",13,10) ret ; return to the next instruction after "call" main endp
; ����������������������������������������������������������������������
end start ; Tell MASM where the program ends
|