Add PnP variants of the Sound Blaster 16 and AWE32

This commit is contained in:
RichardG867
2021-03-20 01:21:42 -03:00
parent 82376a9bac
commit 5e5992247c
5 changed files with 335 additions and 3 deletions

View File

@@ -377,10 +377,13 @@ typedef struct emu8k_t
int pos;
int32_t buffer[SOUNDBUFLEN * 2];
uint16_t addr;
} emu8k_t;
void emu8k_change_addr(emu8k_t *emu8k, uint16_t emu_addr);
void emu8k_init(emu8k_t *emu8k, uint16_t emu_addr, int onboard_ram);
void emu8k_close(emu8k_t *emu8k);

View File

@@ -111,7 +111,9 @@ extern const device_t sb_pro_v1_device;
extern const device_t sb_pro_v2_device;
extern const device_t sb_pro_mcv_device;
extern const device_t sb_16_device;
extern const device_t sb_16_pnp_device;
extern const device_t sb_awe32_device;
extern const device_t sb_awe32_pnp_device;
/* Innovation SSI-2001 */
extern const device_t ssi2001_device;