Basic asembley

liunx

Guest
I downloaded this:Assembler IDE<br /><a href="http://www.download.com/Assembler-IDE/3000-2212_4-10745828.html?tag=lst-1&cdlPid=10745829" target="_blank">http://www.download.com/Assembler-IDE/3000...cdlPid=10745829</a><br /><br />And am learning from this guide:<br /><a href="http://www.geocities.com/siliconvalley/park/3230/x86asm/asml1001.html" target="_blank">http://www.geocities.com/siliconvalley/par...m/asml1001.html</a><br /><br />I put the example code into the compiler compiled it under:"compile TASM code"<br />The output was two files with a .map and a .obj extension.<br />Then i go into command line change directory's accordantly and place this command :"tlink /t myprog"<br />Noting happens.<br />How do i make this code into a executable file.<br /><br /><!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1--><br />ideal<br />p286n<br />model tiny<br /><br />codeseg<br />   org 100h<br />   jmp start<br /><br /> ; your data and subroutine here<br /><br />start:<br />   mov ax, 4c00h<br />   int 21h<br />end<br /><!--c2--></div><!--ec2--><br />Or if you have a tutorial for assembly please drop a link. (32 bit)<br />If you have an idea of what compile i should be using please say. <br />Thanks for any help.<br />Also sorry about my english <img src="http://static.dreamincode.net/forums/style_emoticons/default/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> .<br /><br /><span class='edit'>This post has been edited by <b>Clearman</b>: 10 May, 2008 - 05:54 PM</span>
</div>
 
Back
Top