Date: Wed, 5 Nov 1997 19:46:34 -0800 (PST) Message-Id: <199711060346.TAA03181@adit.ap.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: djgpp AT delorie DOT com From: Nate Eldredge Subject: Re: unsubscribe djgpp Precedence: bulk At 11:58 11/4/1997 +0000, John M. Aldrich wrote: [lamenting people posting "unsubscribe" messages on the ng] >P.P.S.: I wouldn't mind if the mail->news gateway blocked them from >being posted on the newsgroup, even if they weren't acted on... that way >we wouldn't get all these useless threads. :) I agree. It would also be nice if they were filtered from the mailing-list incarnation of the ng. Nate Eldredge eldredge AT ap DOT net inline asm. Also, "info as i386-Syntax" will tell you most of the major things that differ between Intel and AT&T style assembly. The biggies: Operands are reversed, opcodes are followed by a suffix indicating operand size, register names are prefixed with a `%', and immediate operands are prefixed with `$'. Your example would be coded: movb %bx,%ax int $0x10 Note that this won't work by itself though, since you don't know what's in %bx. Nate Eldredge eldredge AT ap DOT net