Xref: utzoo comp.unix.wizards:14464 misc.legal:7287 Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!nrl-cmf!ames!lll-lcc!pyramid!infmx!dror From: dror@infmx.UUCP (Dror Matalon) Newsgroups: comp.unix.wizards,misc.legal Subject: Assembly debugging in dbx Message-ID: <836@infmx.UUCP> Date: 1 Feb 89 21:27:10 GMT Reply-To: dror@infmx.UUCP (Dror Matalon) Organization: Informix, Menlo Park, Ca. U.S.A. Lines: 28 How does one specify the last assembly level location displayed in dbx ? In adb the dot - "." does it. When I want to dissassemble 10 instructions from the last location displayed I do: .,10?ia In dbx the following prints the 10 instructions from the current location: (*(&$pc))/10i but I don't know of a way to display an additional 10 instructions. According to the dbx Man pages: address / [count ] [ mode ] Display the contents of memory starting at the first (or current) address up to the second address, or until count items have been displayed. If no address is specified, the address following the one displayed most recently is used. so it seems like /10i should do it. Unfortunatly dbx interprets / as the search command and looks for the string "10i". Any pointers will be apreciated, Dror