I'm new to assembly language and the VS2005 environment. When I wrote a simple program as follows:<br /><br /> <br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1--><br />.386 <br />.model flat,stdcall <br />.stack 100h <br />.code <br />start: <br />mov ah,1 <br />int 21h <br />end start <br /><!--c2--></div><!--ec2--><br /> <br /><br />The compilation and linkage all passed well, but at runtime a dialogbox displayed: "filename.exe has encountered a problem and needs to close. We are sorry for the inconvenience."<br /><br />No difference is made when "mov ah,1 <br />int 21h" is changed to any other code.<br /><br />Can anybody help me?<br />
</div>
</div>