From owner-cvs-all@FreeBSD.ORG Sat Apr 7 08:37:05 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3DA0D16A405; Sat, 7 Apr 2007 08:37:05 +0000 (UTC) (envelope-from kato@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 2EDDD13C45E; Sat, 7 Apr 2007 08:37:05 +0000 (UTC) (envelope-from kato@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l378b5Ch071744; Sat, 7 Apr 2007 08:37:05 GMT (envelope-from kato@repoman.freebsd.org) Received: (from kato@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l378b5Jc071743; Sat, 7 Apr 2007 08:37:05 GMT (envelope-from kato) Message-Id: <200704070837.l378b5Jc071743@repoman.freebsd.org> From: KATO Takenori Date: Sat, 7 Apr 2007 08:37:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/pc98/boot0.5 Makefile boot0.5.s ldscript putssjis.s selector.s start.s X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Apr 2007 08:37:05 -0000 kato 2007-04-07 08:37:04 UTC FreeBSD src repository Modified files: sys/boot/pc98/boot0.5 Makefile boot0.5.s selector.s start.s Added files: sys/boot/pc98/boot0.5 ldscript putssjis.s Log: Added the IPLware 3.33 support. - Added magic numbers to pretend the NEC original program version 2.70. - Added string display routine with Shift-JIS code support. - Added three nop instructions at start1 in start.s since the installaer of the IPLware put 'call $0x09ab' instruction. - Put the near return instruction at 0x9ab in selector.s. Since the Shit-JIS display routine must be located at 0x1243, the linker script file (ldscript) is applied. Revision Changes Path 1.5 +3 -2 src/sys/boot/pc98/boot0.5/Makefile 1.4 +3 -3 src/sys/boot/pc98/boot0.5/boot0.5.s 1.1 +12 -0 src/sys/boot/pc98/boot0.5/ldscript (new) 1.1 +137 -0 src/sys/boot/pc98/boot0.5/putssjis.s (new) 1.3 +7 -2 src/sys/boot/pc98/boot0.5/selector.s 1.3 +12 -1 src/sys/boot/pc98/boot0.5/start.s