File:  [RetroPC.NET] / xmil / fdd / diskdrv.c
Revision 1.1: download - view: text, annotated - select for diffs
Sun Aug 1 14:31:30 2004 JST (21 years, 3 months ago) by yui
Branches: MAIN
CVS tags: HEAD
initialize

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

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


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

	fdd_eject(drv);
	if (fname) {
		fdd_set(drv, fname, 0, readonly);
	}
	sysmng_update(SYS_UPDATEFDD);
}

// void diskdrv_callback(void) { }


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