Message-Id: <199707281312.NAA05496@mx2.rmplc.co.uk> From: "Liam" To:

Cc: Subject: Re: NASM; long conditional jumps Date: Mon, 28 Jul 1997 13:43:26 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Precedence: bulk Peter Steiner

wrote: > Hello, > > How can I get long conditional jumps with NASM (eg: jb rel16/32). It always > tells me that the distance is to far. From the 386+ they added a NEAR form of conditional jumps. Use jb NEAR label_name Liam