Added Intel Advanced/ZP; Added Commodore PC 60 III; Fixed Force 4:3 option when overscan is not enabled; Added option to scale (0.5x, 1x, 1.5x, 2x) the video output; Added ability to disable ATAPI DMA for CD-ROM drives; Applied all mainline PCem commits; Store network card in config file as name rather than number; Fixed NVR storing for IBM PS/2 Models 2121 and 2121+ISA.
21 lines
597 B
C
21 lines
597 B
C
#include "timer.h"
|
|
|
|
void sound_add_handler(void (*get_buffer)(int32_t *buffer, int len, void *p), void *p);
|
|
|
|
extern int sound_card_current;
|
|
|
|
int sound_card_available(int card);
|
|
char *sound_card_getname(int card);
|
|
struct device_t *sound_card_getdevice(int card);
|
|
int sound_card_has_config(int card);
|
|
char *sound_card_get_internal_name(int card);
|
|
int sound_card_get_from_internal_name(char *s);
|
|
void sound_card_init();
|
|
void sound_set_cd_volume(unsigned int vol_l, unsigned int vol_r);
|
|
|
|
#define CD_FREQ 44100
|
|
#define CD_BUFLEN (CD_FREQ / 10)
|
|
|
|
extern int sound_pos_global;
|
|
void sound_speed_changed();
|