From owner-svn-soc-all@FreeBSD.ORG Tue Jul 3 19:26:32 2012 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id E2B161065674 for ; Tue, 3 Jul 2012 19:26:29 +0000 (UTC) (envelope-from syuu@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Tue, 03 Jul 2012 19:26:29 +0000 Date: Tue, 03 Jul 2012 19:26:29 +0000 From: syuu@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20120703192629.E2B161065674@hub.freebsd.org> Cc: Subject: socsvn commit: r238928 - soc2012/syuu/bhyve-bios/tmp/testbootsect X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2012 19:26:32 -0000 Author: syuu Date: Tue Jul 3 19:26:29 2012 New Revision: 238928 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=238928 Log: INT 10h test Modified: soc2012/syuu/bhyve-bios/tmp/testbootsect/testbootsect.S Modified: soc2012/syuu/bhyve-bios/tmp/testbootsect/testbootsect.S ============================================================================== --- soc2012/syuu/bhyve-bios/tmp/testbootsect/testbootsect.S Tue Jul 3 19:25:59 2012 (r238927) +++ soc2012/syuu/bhyve-bios/tmp/testbootsect/testbootsect.S Tue Jul 3 19:26:29 2012 (r238928) @@ -1,7 +1,11 @@ .code16 - mov $0x1, %ax - mov $0x2, %bx - mov $0x3, %cx - mov $0x4, %dx - int $0x13 - int $0x14 + movb $'a',%al + movb $0xe,%ah + int $0x10 + movb $'b',%al + movb $0xe,%ah + int $0x10 + movb $'c',%al + movb $0xe,%ah + int $0x10 + int $0x20