OSDN Git Service

1e643a3c1d42a86cc6a46b032250007bc92cd63f
[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_t addr, uint32_t data)
15 {
16         d_fdc->write_signal(SIG_UPD765A_MOTOR, 1, 1);
17         d_mem->write_signal(SIG_MEMORY_MOTOR, 1, 1);
18 }
19