From e38e24afb50bc78881efb76bbeef925fa1d2773a Mon Sep 17 00:00:00 2001 From: Jasmine Iwanek Date: Fri, 18 Nov 2022 13:00:51 -0500 Subject: [PATCH] Fixes --- src/include/86box/spd.h | 4 ++-- src/mem/815ep_spd_hack.c | 4 ++-- src/win/Makefile.mingw | 1 - 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/include/86box/spd.h b/src/include/86box/spd.h index 9575278df..de20216a8 100644 --- a/src/include/86box/spd.h +++ b/src/include/86box/spd.h @@ -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*/ diff --git a/src/mem/815ep_spd_hack.c b/src/mem/815ep_spd_hack.c index febc378fe..55ac9d1e9 100644 --- a/src/mem/815ep_spd_hack.c +++ b/src/mem/815ep_spd_hack.c @@ -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: diff --git a/src/win/Makefile.mingw b/src/win/Makefile.mingw index dadf3f009..5ddca13c7 100644 --- a/src/win/Makefile.mingw +++ b/src/win/Makefile.mingw @@ -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 \