Moved the SCSI BIOS command handler to its own file (scsi_bios_command.c/h);
Removed all the SCSI BIOS ID/LUN swapping nonsense as it's no longer needed; The makefile now knows the .h dependencies for everything in SOUND/; Moved hdd*.* and scsi*.* to the HDD and SCSI subdirectories, respectively; Fixed some leftover path name miscapitalizations in the makefile; BT-542B is now BT-545C and BT-946C is now BT-958D again; Implemented the last missing commands for the BT-958D; MUNT and network are now optional at compile time but enabled by default; When compiling the development branch, you now have to choose what of (Pro Audio Spectrum 16, Cirrus Logic, NVidia Riva) you want your binary to include.
This commit is contained in:
12
src/pc.c
12
src/pc.c
@@ -43,8 +43,8 @@
|
||||
#include "fdc.h"
|
||||
#include "fdd.h"
|
||||
#include "gameport.h"
|
||||
#include "hdd.h"
|
||||
#include "hdd_ide_at.h"
|
||||
#include "HDD/hdd.h"
|
||||
#include "HDD/hdd_ide_at.h"
|
||||
#include "cdrom.h"
|
||||
#include "cdrom_ioctl.h"
|
||||
#include "cdrom_image.h"
|
||||
@@ -53,7 +53,9 @@
|
||||
#include "keyboard_at.h"
|
||||
#include "SOUND/midi.h"
|
||||
#include "mouse.h"
|
||||
#ifdef USE_NETWORK
|
||||
#include "NETWORK/network.h"
|
||||
#endif
|
||||
#ifdef WALTJE
|
||||
# define UNICODE
|
||||
# include "plat_dir.h"
|
||||
@@ -64,7 +66,7 @@
|
||||
#include "plat_midi.h"
|
||||
#include "plat_mouse.h"
|
||||
#include "plat_ui.h"
|
||||
#include "scsi.h"
|
||||
#include "SCSI/scsi.h"
|
||||
#include "serial.h"
|
||||
#include "SOUND/sound.h"
|
||||
#include "SOUND/snd_cms.h"
|
||||
@@ -534,7 +536,9 @@ void resetpchard_init(void)
|
||||
|
||||
resetide();
|
||||
scsi_card_init();
|
||||
#ifdef USE_NETWORK
|
||||
network_reset();
|
||||
#endif
|
||||
|
||||
sound_card_init();
|
||||
if (mpu401_standalone_enable)
|
||||
@@ -717,5 +721,7 @@ void closepc(void)
|
||||
closevideo();
|
||||
device_close_all();
|
||||
midi_close();
|
||||
#ifdef USE_NETWORK
|
||||
network_close();
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user