This commit is contained in:
Jasmine Iwanek
2022-11-18 13:00:51 -05:00
parent 370a343b94
commit e38e24afb5
3 changed files with 4 additions and 5 deletions

View File

@@ -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*/

View File

@@ -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:

View File

@@ -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 \