blob: 6012090606daa25532c98049135c24ccfa1ee3fb (
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
|
#pragma once
#ifndef __ABC830__
#define __ABC830__
#include "emu.h"
#include "formats/basicdsk.h"
#include "imagedev/flopdrv.h"
//**************************************************************************
// INTERFACE CONFIGURATION MACROS
//**************************************************************************
#define MCFG_ABC830_ADD() \
MCFG_LEGACY_FLOPPY_2_DRIVES_ADD(abc830_floppy_interface)
#define MCFG_ABC832_ADD() \
MCFG_LEGACY_FLOPPY_2_DRIVES_ADD(abc832_floppy_interface)
#define MCFG_ABC834_ADD() \
MCFG_LEGACY_FLOPPY_2_DRIVES_ADD(abc832_floppy_interface)
#define MCFG_ABC838_ADD() \
MCFG_LEGACY_FLOPPY_2_DRIVES_ADD(abc838_floppy_interface)
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// floppy configuration
extern const floppy_interface abc830_floppy_interface;
extern const floppy_interface abc832_floppy_interface;
extern const floppy_interface abc834_floppy_interface;
extern const floppy_interface abc838_floppy_interface;
extern const floppy_interface fd2_floppy_interface;
#endif
|