OSDN Git Service

[General] Convert sourcecode's CRLF format: DOS(WINDOWS) to Unix, to apply patches...
[csp-qt/common_source_project-fm7.git] / source / src / vm / qc10 / floppy.cpp
1 /*
2         EPSON QC-10 Emulator 'eQC-10'
3
4         Author : Takeda.Toshiya
5         Date   : 2008.02.18 -
6
7         [ floppy ]
8 */
9
10 #include "floppy.h"
11 #include "memory.h"
12 #include "../upd765a.h"
13
14 void FLOPPY::write_io8(uint32 addr, uint32 data)
15 {
16         d_fdc->write_signal(SIG_UPD765A_MOTOR, 1, 1);
17         d_mem->write_signal(SIG_MEMORY_MOTOR, 1, 1);
18 }
19