mirror of
https://github.com/86Box/86Box.git
synced 2026-02-23 18:08:20 -07:00
Fixes
This commit is contained in:
@@ -110,7 +110,7 @@ extern void spd_write_drbs_ali1621(uint8_t *regs, uint8_t reg_min, uint8_t reg_m
|
||||
extern void spd_write_drbs_intel_815ep(uint8_t *regs);
|
||||
|
||||
/* 815EP Memory Hack Specific */
|
||||
extern void intel_815ep_spd_init(); /* Initialize the SPD (For the Machines) */
|
||||
extern uint8_t intel_815ep_get_banking(); /* Get the Banking Configuration (For the Chipset) */
|
||||
extern void intel_815ep_spd_init(void); /* Initialize the SPD (For the Machines) */
|
||||
extern uint8_t intel_815ep_get_banking(void); /* Get the Banking Configuration (For the Chipset) */
|
||||
|
||||
#endif /*EMU_SPD_H*/
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
#define MEM_SIZE_MB (mem_size >> 10)
|
||||
|
||||
uint8_t
|
||||
intel_815ep_get_banking()
|
||||
intel_815ep_get_banking(void)
|
||||
{
|
||||
switch (MEM_SIZE_MB) {
|
||||
case 32:
|
||||
@@ -70,7 +70,7 @@ intel_815ep_get_banking()
|
||||
}
|
||||
|
||||
void
|
||||
intel_815ep_spd_init()
|
||||
intel_815ep_spd_init(void)
|
||||
{
|
||||
switch (MEM_SIZE_MB) {
|
||||
case 32:
|
||||
|
||||
@@ -593,7 +593,6 @@ DEVOBJ := bugger.o cartridge.o cassette.o hasp.o hwm.o hwm_lm75.o hwm_lm78.o hwm
|
||||
mouse_serial.o mouse_ps2.o \
|
||||
phoenix_486_jumper.o \
|
||||
tco.o
|
||||
endif
|
||||
|
||||
SIOOBJ := sio_acc3221.o sio_ali5123.o \
|
||||
sio_f82c710.o sio_82091aa.o sio_fdc37c6xx.o \
|
||||
|
||||
Reference in New Issue
Block a user