File:  [RetroPC.NET] / xmil / fdd / diskdrv.c
Revision 1.2: download - view: text, annotated - select for diffs
Tue Aug 10 17:28:48 2004 JST (21 years, 2 months ago) by yui
Branches: MAIN
CVS tags: HEAD
fix...

// フロッピーディスクの挿入延滞用のブリッヂ

#include	"compiler.h"
#include	"sysmng.h"
#include	"diskdrv.h"
#include	"fddfile.h"


void diskdrv_setfdd(REG8 drv, const OEMCHAR *fname, int readonly) {

	fddfile_eject(drv);
	if (fname) {
		fddfile_set(drv, fname, 0, readonly);
	}
	sysmng_update(SYS_UPDATEFDD);
}

// void diskdrv_callback(void) { }


RetroPC.NET-CVS <cvs@retropc.net>