Another massive cleanup run. Ibm.h no longer includes system header files. ROM loading simplified, and moved from mem.c to rom.c. Fixes in Makefile. Corrected mamy wrong includes. Removed old junk from days long gone. First phase of new SCAT chipset driver - no longer gives errors in BIOS, but NOT DONE YET.
This commit is contained in:
@@ -1,24 +1,26 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <wchar.h>
|
||||
#include "../device.h"
|
||||
#include "midi.h"
|
||||
#include "../ibm.h"
|
||||
|
||||
#include "../win/plat_midi.h"
|
||||
#include "../win/plat_ticks.h"
|
||||
#include "midi.h"
|
||||
#include "midi_system.h"
|
||||
#ifdef USE_FLUIDSYNTH
|
||||
# include "midi_fluidsynth.h"
|
||||
#endif
|
||||
#ifdef USE_MUNT
|
||||
# include "midi_mt32.h"
|
||||
#endif
|
||||
#include "midi_system.h"
|
||||
|
||||
|
||||
int midi_device_current = 0;
|
||||
static int midi_device_last = 0;
|
||||
|
||||
|
||||
typedef struct
|
||||
{
|
||||
const char *name;
|
||||
|
||||
Reference in New Issue
Block a user