Pejman Moghadam / Assembly

Debugger - ald

Public domain


Assembly Language Debugger (ald) reminds me of the good old days in DOS using famous "Debug".

snip from ALD official site:
The Assembly Language Debugger is a tool for debugging executable programs at the assembly level. It currently runs only on Intel x86 platforms.

snip from interactive help:
help : Displays commands, or gives specific help on commands.
file secinfo : Output information about the file's sections.
disassemble -section .text : disassemble specific section.
step : Step one instruction, stepping into any subroutines.
next : Step one instruction, stepping over any subroutines.
register : Display and/or manipulate the process' registers.
run : Start program from beginning.

Installation Progress in Slackware 12.0 :

cd /usr/src
wget http://garr.dl.sourceforge.net/sourceforge/ald/ald-0.1.7.tar.gz
tar zxf ald-0.1.7.tar.gz
cd ald-0.1.7
./configure
make && make install

BY: Pejman Moghadam
TAG: asm, debugger, ald
DATE: 2008-08-05 00:27:47


Pejman Moghadam / Assembly [ TXT ]