Added preliminary emulation of the 'Xebec' XT Fixed Disk Adapter.

This commit is contained in:
SarahW 2017-03-18 17:14:39 +00:00
commit f44aed9332
12 changed files with 758 additions and 9 deletions

View file

@ -6,6 +6,19 @@
#include "ide.h"
#include "cdrom-iso.h"
void warning(const char *format, ...)
{
char buf[1024];
va_list ap;
va_start(ap, format);
vsprintf(buf, format, ap);
va_end(ap);
alert("Warning:", buf, NULL, "OK", NULL, 0, 0);
}
static int file_return(void)
{
return D_CLOSE;