From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23422 invoked by alias); 13 Feb 2002 14:49:13 -0000 Mailing-List: contact insight-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sources.redhat.com Received: (qmail 23008 invoked from network); 13 Feb 2002 14:48:35 -0000 Received: from unknown (HELO earth-out.franklin.com) (63.88.59.82) by sources.redhat.com with SMTP; 13 Feb 2002 14:48:35 -0000 Received: from saturn.franklin.com (IDENT:root@saturn.franklin.com [192.9.200.2]) by earth-out.franklin.com (8.9.3/8.9.3) with ESMTP id JAA13705 for ; Wed, 13 Feb 2002 09:48:23 -0500 Received: from mercury.franklin.com (IDENT:root@mercury.franklin.com [192.9.200.250]) by saturn.franklin.com (8.9.3/8.9.3) with ESMTP id JAA03532 for ; Wed, 13 Feb 2002 09:48:23 -0500 Received: (from duane@localhost) by mercury.franklin.com (8.9.3/8.9.3) id JAA28737; Wed, 13 Feb 2002 09:48:25 -0500 Date: Wed, 13 Feb 2002 06:49:00 -0000 Message-Id: <200202131448.JAA28737@mercury.franklin.com> From: Duane Ellis To: insight@sources.redhat.com In-reply-to: <3c932a4a.62b9.0@esatclear.ie> (mckennad@esatclear.ie) Subject: Re: Adding Registers Reply-to: duane_ellis@franklin.com References: <3c932a4a.62b9.0@esatclear.ie> X-SW-Source: 2002-q1/txt/msg00117.txt.bz2 david> I have tried looking for the function target_fetch/store_registers() but I am unable to locate it in any C file. I am assuming that this is where you define Look for these two macros in target.h #define target_fetch_registers(regno) \ (*current_target.to_fetch_registers) (regno) #define target_store_registers(regs) \ (*current_target.to_store_registers) (regs) You need to determine what those function pointers resolve to for your specific target. Then modify the "pointed to" functions accordingly. -Duane.