From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MixWf-0007UY-WE for qemu-devel@nongnu.org; Wed, 02 Sep 2009 17:37:58 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MixWb-0007T5-4O for qemu-devel@nongnu.org; Wed, 02 Sep 2009 17:37:57 -0400 Received: from [199.232.76.173] (port=52062 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MixWb-0007Sy-1K for qemu-devel@nongnu.org; Wed, 02 Sep 2009 17:37:53 -0400 Received: from mx09.roch.ny.frontiernet.net ([66.133.183.226]:1794) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MixWa-00037p-OI for qemu-devel@nongnu.org; Wed, 02 Sep 2009 17:37:52 -0400 Received: from fys (70-100-44-137.br1.sho.az.frontiernet.net [70.100.44.137]) by relay01.roch.ny.frontiernet.net (Postfix) with ESMTPA id 6260A5FFDE for ; Wed, 2 Sep 2009 21:37:51 +0000 (UTC) Message-ID: <000501ca2c15$bbcc6370$01fea8c0@fys> From: "Benjamin David Lunt" Date: Wed, 2 Sep 2009 14:38:35 -0700 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] fdc: save and restore commands Reply-To: Benjamin David Lunt List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hello again, Another (maybe) error in fdc.c is the command code for SAVE and RESTORE. In the Intel 82078 (44pin) and the Intel 82078SL (64pin), each have the command codes as 2Eh and 4Eh respectively. The current fdc.c file has them as 2Ch and 4Ch. fdc.c Line 368 FD_CMD_SCAN_HIGH_OR_EQUAL = 0x1d, - FD_CMD_SAVE = 0x2c, + FD_CMD_SAVE = 0x2e, FD_CMD_OPTION = 0x33, - FD_CMD_RESTORE = 0x4c, + FD_CMD_RESTORE = 0x4e, Please correct me if I am wrong. Thanks, Ben