From mint-bounce@lists.fishpool.fi Tue Apr 27 06:15:38 2010 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type:content-transfer-encoding; bh=5MBKM5TlN0jfyEK9T5M8LAxtXQcauvONtQaNrUTq96A=; b=JZRmVANtMREAJfo5Nzpzp13iXEhdXlgwyBAY9eI/hZN2ULYe3zL4OF1jsB3+x1huNj lSDJdTLTa2UptFHbDZ6kwO2/XSfcZP9GEb6WbTiloNLR048/K+5ARfwTKqN1dMDmYdBT ZMergJwivt1YYyNnsWQywJDqY0O0DIgCluGuY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=sLM99y/tEm8i0s6AmYpyDo7tvrl095kDbHi4KnPu6hR9NnRPXqD6EqZrcqIKbL9ioX uKRxYDOA0RvyrtQ1z5unhLg8YAQQ3cvJTM0vqdWwo1wdAYzARLPzowdNprfJxOQIIkg7 6X3fZvrkbZSdPYDZjAvbnRk5neMMqQ7xz2Cyc= MIME-Version: 1.0 In-Reply-To: References: Date: Tue, 27 Apr 2010 12:12:12 +0200 X-Google-Sender-Auth: 5380c85c23d632b8 Message-ID: Subject: Re: [MiNT] "local return" in gnu as From: Johan Klockars To: Miro Kropacek Cc: MiNT Mailing List Content-Type: text/plain; charset=ISO-8859-1 X-ecartis-version: Ecartis v1.0.0 Sender: mint-bounce@lists.fishpool.fi Errors-to: mint-bounce@lists.fishpool.fi X-original-sender: johan@klockars.net Precedence: bulk List-help: List-unsubscribe: List-Id: X-List-ID: List-subscribe: List-owner: List-post: Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by mail.sparemint.org id o3RAFXC5009475 Hi, > I need a help with this piece of fvdi code: > .macro ijsr indirect >   #ifdef mc68000 > local return ... Where do you find that? There should not be anything like that in the fVDI source code. Under gcc, the macro (from macros.gnu) is as follows: (see http://cvs.klockars.net/viewvc/fvdi/include/macros.gnu?revision=1.4&view=markup) .macro ijsr indirect .if mc68000 == 1 pea ret\@ move.l \indirect,-(a7) rts ret\@: .else jsr ([\indirect]) .endif .endm /Johan