% cat /sys/src/games/music/Readme
--- Begin Message ---
Good so far. Now when I go to run games/jukebox, it complains that
file /sys/lib/music/icons/skull.bit does not exist. What do I do now?
On Nov 27, 2007, at 10:45 AM, Russ Cox wrote:
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
--- End Message ---