summaryrefslogblamecommitdiffstatshomepage
path: root/src/devices/imagedev/wafadrive.cpp
blob: 3bbdfa994ecefcad19643791959c674aa578d5ee (plain) (tree)
1
2
3
4
5
6
7
8






                                                                      
                                          













                                                                                                          
                                        


                                                                                                                                 
                                                                           



                                                   
                                       










                                                   
                                                                                
 
                                                                     




                                          
// 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")

//-------------------------------------------------
//  wafadrive_image_device - constructor
//-------------------------------------------------

wafadrive_image_device::wafadrive_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
	microtape_image_device(mconfig, WAFADRIVE_IMAGE, tag, owner, clock)
{
}

//-------------------------------------------------
//  wafadrive_image_device - destructor
//-------------------------------------------------

wafadrive_image_device::~wafadrive_image_device()
{
}


void wafadrive_image_device::device_start()
{
}

std::pair<std::error_condition, std::string> wafadrive_image_device::call_load()
{
	return std::make_pair(std::error_condition(), std::string());
}

void wafadrive_image_device::call_unload()
{
}