From owner-freebsd-current Tue Mar 16 20:15: 8 1999 Delivered-To: freebsd-current@freebsd.org Received: from lor.watermarkgroup.com (lor.watermarkgroup.com [207.202.73.33]) by hub.freebsd.org (Postfix) with ESMTP id 8BA7B15257 for ; Tue, 16 Mar 1999 20:14:09 -0800 (PST) (envelope-from luoqi@watermarkgroup.com) Received: (from luoqi@localhost) by lor.watermarkgroup.com (8.8.8/8.8.8) id XAA14900 for current@freebsd.org; Tue, 16 Mar 1999 23:13:46 -0500 (EST) (envelope-from luoqi) Date: Tue, 16 Mar 1999 23:13:46 -0500 (EST) From: Luoqi Chen Message-Id: <199903170413.XAA14900@lor.watermarkgroup.com> To: current@freebsd.org Subject: VM86 assembly code problem Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG There're a couple of places in swtch.s where code looks like this, #ifdef VM86 btrl %esi, _private_tss je 3f ... 3: #endif The conditional jump statement doesn't seem right, according to manual, btrl instruction modifies CF flag but not Z, so the jump should be jae/jb instead of je/jne. Could anyone confirm this? -lq To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message