diff options
author | scrappy <scrappy@FreeBSD.org> | 1998-02-17 14:17:13 +0000 |
---|---|---|
committer | scrappy <scrappy@FreeBSD.org> | 1998-02-17 14:17:13 +0000 |
commit | b171ac7ee4cbb0dbbb40690811b00336ec7146d0 (patch) | |
tree | c67c48140d38cbc8a51b5f1b5a5b41309a6f6f37 /sys/dev/sound/isa/sb.h | |
parent | 6777765e4373946684584119df163e71de8ed128 (diff) | |
download | FreeBSD-src-b171ac7ee4cbb0dbbb40690811b00336ec7146d0.zip FreeBSD-src-b171ac7ee4cbb0dbbb40690811b00336ec7146d0.tar.gz |
Upgrade Luigi's audio driver to Jan/23 version... will bring in Feb/15th
version as soon as I've tested it...
Installed/tested on my home machine...any problems, please report directly
to me.
Diffstat (limited to 'sys/dev/sound/isa/sb.h')
-rw-r--r-- | sys/dev/sound/isa/sb.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/dev/sound/isa/sb.h b/sys/dev/sound/isa/sb.h index 1735c14..0bd4210 100644 --- a/sys/dev/sound/isa/sb.h +++ b/sys/dev/sound/isa/sb.h @@ -11,18 +11,21 @@ extern int sbc_major, sbc_minor ; * sound blaster registers */ -#define DSP_RESET (io_base + 0x6) +#define SBDSP_RST 0x6 #define DSP_READ (io_base + 0xA) #define DSP_WRITE (io_base + 0xC) -#define DSP_COMMAND (io_base + 0xC) -#define DSP_STATUS (io_base + 0xC) +#define SBDSP_CMD 0xC +#define SBDSP_STATUS 0xC #define DSP_DATA_AVAIL (io_base + 0xE) #define DSP_DATA_AVL16 (io_base + 0xF) + +#if 0 #define MIXER_ADDR (io_base + 0x4) #define MIXER_DATA (io_base + 0x5) #define OPL3_LEFT (io_base + 0x0) #define OPL3_RIGHT (io_base + 0x2) #define OPL3_BOTH (io_base + 0x8) +#endif /* * DSP Commands. There are many, and in many cases they are used explicitly |