From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@cse.psu.edu Subject: Re: [9fans] SoundBlaster 16 on QEMU not working From: "Russ Cox" Date: Tue, 27 Nov 2007 10:45:08 -0500 In-Reply-To: <03F3BCAF-7E98-41EF-BA80-05CFCA51DD44@mac.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20071127154509.315521E8C22@holo.morphisms.net> Topicbox-Message-UUID: 0cc80d60-ead3-11e9-9d60-3106f5b1d025 > Hello. I have, in my QEMU setup, a SoundBlaster 16 audio card to > emulate and the line > > audio0=sb16 > > in my plan9.ini What you wrote is equivalent to audio=sb16= The correct line for QEMU is audio0=type=sb16 Because you didn't set type=sb16, the audio driver didn't even bother trying to configure the card. You might find that you need to use audio0=type=sb16 irq=5 dma=1 but the driver should be able to figure those out for itself, so try the simpler line first. Russ