From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32294 invoked by alias); 25 Aug 2004 09:49:19 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 32285 invoked from network); 25 Aug 2004 09:49:14 -0000 Received: from unknown (HELO alice.acmet.com) (61.16.238.202) by sourceware.org with SMTP; 25 Aug 2004 09:49:14 -0000 Received: from monika (localhost [127.0.0.1]) by alice.acmet.com (8.11.6/8.11.6) with ESMTP id i7P9uss22532; Wed, 25 Aug 2004 15:26:59 +0530 From: "Monika Chaddha" To: "'sevtov'" Cc: Subject: RE: debug in assembler Date: Wed, 25 Aug 2004 09:49:00 -0000 Message-ID: <001601c48a88$c22c6050$5100a8c0@monika> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit In-Reply-To: <391992434.20040825113700@mail.ru> X-SW-Source: 2004-08/txt/msg00362.txt.bz2 Yes ... :-)) Use the following commands in the following series ... 1. target exec .out 2. target sim 3. load .out 4. symbol-file 5. b main (put breakpoint to function main) 6. run 7. nexti 8. nexti .... By doing this u can easily debug .... to see disassembly for ur assembly code Run the command : disassemble Monika >-----Original Message----- >From: gdb-owner@sources.redhat.com [mailto:gdb-owner@sources.redhat.com] On >Behalf Of sevtov >Sent: Wednesday, August 25, 2004 1:07 PM >To: gdb@sources.redhat.com >Subject: debug in assembler > >Hello all! > >Is there a command to switch debugging to assembler level instead of >source-level? > > >Thank you. >