New Resource: Freeware version of IDA Pro Disassembler!

How PC Programs Work:
Understanding x86 (Intel)
Machine Code

    This area of  The Starman's Realm could also be called Assembly Language 101. Though most of these pages will deal with pre-existing programs and figuring out how they work rather than teaching you how to create them, we've finally added a page about assembling and compiling x86 Assembly source code under MASM (which is FREE if you know where to look for it; don't worry, we'll show you!). You'll come to understand much about Intel 8086 and other x86 Assembly instructions as you learn how the example programs function on a PC.

Whether you want to create your own programs or simply try to understand how others work, you must have a listing of all the basic Intel x86 Opcodes and a copy of Ralf Brown's famous Interrupt List  (see the References section below for obtaining free downloads of both items). If you move on to C/C++ or Win32 Assembly (see below) programming for Windows®, you'll also need to know about Windows API calls!

Another valuable resource for many students will be the IDA PRO Disassembler, created by Ilfak Guilfanov. DataRescue has released a FREEWARE (for noncommercial use) version of IDA PRO (v. 4.9 - 15,322 KiB Windows® install file); download it from here (or search for other download sites):
http://www.datarescue.com/idabase/idadownfreeware.htm . This version still allows you to perform an interactive disassembly of x86 code under Windows® (9x/Me thru XP).
    Though it will take some time to learn how to use (it's not like a simple text editor), IDA Pro can save you time later on because it will automatically update every cross reference to the same label whenever you rename it! IDA Pro understands all the later Intel instructions which DEBUG chokes on, and it will also create and save various .lst, .ASM, .map, etc. files for your disassembly project.

 

Pages in this Area

Important x86 (PC) Tools and References:


 

 

This page was last updated: December 16, 2007.


The Starman's Realm Index Page