summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isbx/compis_fdc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isbx/compis_fdc.cpp')
-rw-r--r--src/devices/bus/isbx/compis_fdc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isbx/compis_fdc.cpp b/src/devices/bus/isbx/compis_fdc.cpp
index df2e76069e6..a2300020119 100644
--- a/src/devices/bus/isbx/compis_fdc.cpp
+++ b/src/devices/bus/isbx/compis_fdc.cpp
@@ -56,8 +56,8 @@ static void compis_floppies(device_slot_interface &device)
MACHINE_CONFIG_START(compis_fdc_device::device_add_mconfig)
MCFG_I8272A_ADD(I8272_TAG, true)
- MCFG_UPD765_INTRQ_CALLBACK(WRITELINE(compis_fdc_device, fdc_irq))
- MCFG_UPD765_DRQ_CALLBACK(WRITELINE(compis_fdc_device, fdc_drq))
+ MCFG_UPD765_INTRQ_CALLBACK(WRITELINE(*this, compis_fdc_device, fdc_irq))
+ MCFG_UPD765_DRQ_CALLBACK(WRITELINE(*this, compis_fdc_device, fdc_drq))
MCFG_FLOPPY_DRIVE_ADD(I8272_TAG":0", compis_floppies, "525qd", compis_fdc_device::floppy_formats)
MCFG_FLOPPY_DRIVE_ADD(I8272_TAG":1", compis_floppies, "525qd", compis_fdc_device::floppy_formats)
MACHINE_CONFIG_END
an RS-232 port. [Curt Coder]' href='/mame/commit/src/mess/includes/super6.h?id=64c9ce4de3c052db653fef68cd9bc0f98dcea98b'>64c9ce4de3c
7285b359d25



4e8e3066f84
7285b359d25
0e19f641d31









46e17cfdcae

7285b359d25






17ad25efffa
7285b359d25

17ad25efffa

9ed2e639556
46e17cfdcae
7285b359d25
0e00c47c7cd

7285b359d25







22556b3d671

7285b359d25






6c40f0f2920
ea5d79c9cc9



7285b359d25


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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88