From: Peter Annema Newsgroups: comp.os.msdos.djgpp Subject: Re: NASM; long conditional jumps Date: Sun, 27 Jul 1997 14:53:10 +0200 Organization: bART Internet Services Lines: 16 Message-ID: <33DB44B6.D167B9B1@geocities.com> References: <5rdl2m$bmh$2 AT news02 DOT btx DOT dtag DOT de> Reply-To: schattenjaeger AT geocities DOT com NNTP-Posting-Host: asyn07.gn5.noord.bart.nl Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Peter Steiner wrote: > How can I get long conditional jumps with NASM (eg: jb rel16/32). It always > tells me that the distance is to far. I don't know if NASM uses some kind of smart compilation (like some other assemblers) but the standard solution for this one is something like this : jnb @over jmp rel16/32 @over: Greets, Peter