TITLE HelloProc ; This program will create procedure ... ; Last update: 10/22/13 ; INCLUDE Irvine32.inc .data msg BYTE "Hello VWC", 0 .code main PROC call hello exit main ENDP ; procedure hello PROC ; Pre-cond. msg holds the string ; Post-cond. MOV EDX, offset msg call writestring call crlf RET hello ENDP END main