mirror of
https://github.com/86Box/86Box.git
synced 2026-03-01 18:34:23 -07:00
Merge branch '86Box:master' into master
This commit is contained in:
@@ -165,7 +165,7 @@ extern _Atomic double mouse_y_error; /* Mouse error accumulator - Y */
|
||||
#endif
|
||||
extern int pit_mode; /* (C) force setting PIT mode */
|
||||
extern int fm_driver; /* (C) select FM sound driver */
|
||||
extern int raw_input; /* (C) Use raw input */
|
||||
extern int hook_enabled; /* (C) Keyboard hook is enabled */
|
||||
|
||||
/* Keyboard variables for future key combination redefinition. */
|
||||
extern uint16_t key_prefix_1_1;
|
||||
|
||||
@@ -593,6 +593,7 @@ extern int machine_at_pcm5330_init(const machine_t *);
|
||||
|
||||
extern int machine_at_ecs486_init(const machine_t *);
|
||||
extern int machine_at_hot433a_init(const machine_t *);
|
||||
extern int machine_at_pl4600c_init(const machine_t *);
|
||||
extern int machine_at_atc1415_init(const machine_t *);
|
||||
extern int machine_at_actionpc2600_init(const machine_t *);
|
||||
extern int machine_at_actiontower8400_init(const machine_t *);
|
||||
|
||||
22
src/include/86box/snd_akm4531.h
Normal file
22
src/include/86box/snd_akm4531.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
||||
* running old operating systems and software designed for IBM
|
||||
* PC systems and compatibles from 1981 through fairly recent
|
||||
* system designs based on the PCI bus.
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* Ensoniq AudioPCI family emulation.
|
||||
*
|
||||
* Authors: Cacodemon345
|
||||
*
|
||||
* Copyright 2024-2025 Cacodemon345.
|
||||
*/
|
||||
struct akm4531_t
|
||||
{
|
||||
unsigned char registers[256];
|
||||
};
|
||||
|
||||
typedef struct akm4531_t akm4531_t;
|
||||
|
||||
double akm4531_apply_master_vol(unsigned short sample);
|
||||
@@ -185,6 +185,7 @@ extern const device_t ess_soundpiper_32_mca_device;
|
||||
extern const device_t ess_chipchat_16_mca_device;
|
||||
|
||||
/* Ensoniq AudioPCI */
|
||||
extern const device_t es1370_device;
|
||||
extern const device_t es1371_device;
|
||||
extern const device_t es1371_onboard_device;
|
||||
extern const device_t es1373_device;
|
||||
|
||||
Reference in New Issue
Block a user