From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:34031) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Swp2b-0001ic-Pc for qemu-devel@nongnu.org; Thu, 02 Aug 2012 02:37:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Swp2a-0006e8-Pk for qemu-devel@nongnu.org; Thu, 02 Aug 2012 02:37:49 -0400 Received: from mail-we0-f173.google.com ([74.125.82.173]:60307) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Swp2a-0006dv-Ii for qemu-devel@nongnu.org; Thu, 02 Aug 2012 02:37:48 -0400 Received: by weyz53 with SMTP id z53so5574849wey.4 for ; Wed, 01 Aug 2012 23:37:47 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <501A2039.50606@redhat.com> Date: Thu, 02 Aug 2012 08:37:45 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1343840383-28138-1-git-send-email-hpoussin@reactos.org> In-Reply-To: <1343840383-28138-1-git-send-email-hpoussin@reactos.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH] esp: add Tekram DC-390 emulation (PC SCSI adapter) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?B?SGVydsOpIFBvdXNzaW5lYXU=?= Cc: Blue Swirl , qemu-devel@nongnu.org Il 01/08/2012 18:59, Hervé Poussineau ha scritto: > + > +static void dc390_class_init(ObjectClass *klass, void *data) > +{ > + DeviceClass *dc = DEVICE_CLASS(klass); > + PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); > + > + k->init = dc390_scsi_init; > + k->romfile = "INT13.BIN"; Is this available under a free license? Otherwise, it's probably easier to just add support to SeaBIOS. Paolo > + k->config_read = dc390_read_config; > + k->config_write = dc390_write_config; > + dc->desc = "Tekram DC-390 SCSI adapter"; > +}