Home | x86 Assembly | <<< Previous | Next >>> |
Programs written in assembly language run faster, and are usually smaller than the ones written in High-level languages. Even for the compiler gurus at Microsoft and Borland, assembly is still faster than C++ or C. Also, using assembly, you have better access to computer hardware than while using high-level languages. Assembly language has its own disadvantages. Simple procedures often require several lines of coding in Assembly. Often, such programs are also dependent on the type of machine they are running on. Sometimes it is more sensible to write programs in C++, specially when you want to save time. If you go through this website, you'd learn how to program simple applications in x86 assembly (for the computers running Intel microprocessors). Lets Start! To begin with, you need an assembler (a program that converts assembly language program to machine level code). One of the free assemblers is Debug.exe which comes with Windows or DOS. Click here to learn some basic Debug commands. http://download.microsoft.com/download/vc15/Update/1/WIN98/EN-US/Lnk563.exe If you wish to take a look the the MASM Manual, click again!. Its incomplete cause I don't get time to do the HTML formatting. |
Home | x86 Assembly | <<< Previous | Next >>> |