blob: 1958aaee0b4d97c8c4aa81e1c6874e74c07f8d60 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// license:BSD-3-Clause
// copyright-holders:David Haywood
/*********************************************************************
wafadrive.cpp
Emulation of an individual drive within the Wafadrive unit
(preliminary, no actual emulation yet)
*********************************************************************/
#include "emu.h"
#include "wafadrive.h"
/***************************************************************************
TYPE DEFINITIONS
***************************************************************************/
// device type definition
DEFINE_DEVICE_TYPE(WAFADRIVE_IMAGE, wafadrive_image_device, "wafadrive_image", "Sinclair Wafadrive Image")
//-------------------------------------------------
// microdrive_image_device - constructor
//-------------------------------------------------
wafadrive_image_device::wafadrive_image_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
microtape_image_device(mconfig, WAFADRIVE_IMAGE, tag, owner, clock)
{
}
//-------------------------------------------------
// microdrive_image_device - destructor
//-------------------------------------------------
wafadrive_image_device::~wafadrive_image_device()
{
}
void wafadrive_image_device::device_start()
{
}
image_init_result wafadrive_image_device::call_load()
{
return image_init_result::PASS;
}
void wafadrive_image_device::call_unload()
{
}
|