From owner-svn-src-all@FreeBSD.ORG Sat May 16 10:31:16 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 45C6EB24; Sat, 16 May 2015 10:31:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3530F15AE; Sat, 16 May 2015 10:31:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4GAVGqr080753; Sat, 16 May 2015 10:31:16 GMT (envelope-from thomas@FreeBSD.org) Received: (from thomas@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4GAVGvO080752; Sat, 16 May 2015 10:31:16 GMT (envelope-from thomas@FreeBSD.org) Message-Id: <201505161031.t4GAVGvO080752@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: thomas set sender to thomas@FreeBSD.org using -f From: Thomas Quinot Date: Sat, 16 May 2015 10:31:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r283006 - head/sys/boot/i386/boot0 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 May 2015 10:31:16 -0000 Author: thomas Date: Sat May 16 10:31:15 2015 New Revision: 283006 URL: https://svnweb.freebsd.org/changeset/base/283006 Log: Minor comments fixes Modified: head/sys/boot/i386/boot0/boot0.S Modified: head/sys/boot/i386/boot0/boot0.S ============================================================================== --- head/sys/boot/i386/boot0/boot0.S Sat May 16 10:27:27 2015 (r283005) +++ head/sys/boot/i386/boot0/boot0.S Sat May 16 10:31:15 2015 (r283006) @@ -541,11 +541,11 @@ putchr: int $0x10 # character popw %bx # Restore #else /* SIO */ - movb $0x01,%ah # BIOS: Send + movb $0x01,%ah # BIOS: Send character bioscom: pushw %dx # Save xorw %dx,%dx # Use COM1 - int $0x14 # Character + int $0x14 # BIOS: Serial I/O popw %dx # Restore #endif /* SIO */ retw # To caller