summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/pcw.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/pcw.h')
-rw-r--r--src/mame/includes/pcw.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/includes/pcw.h b/src/mame/includes/pcw.h
index 5a288e79895..696de68c244 100644
--- a/src/mame/includes/pcw.h
+++ b/src/mame/includes/pcw.h
@@ -34,6 +34,7 @@ public:
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_fdc(*this, "upd765"),
+ m_floppy(*this, "upd765:%u", 0U),
m_ram(*this, RAM_TAG),
m_beeper(*this, "beeper"),
m_screen(*this, "screen"),
@@ -48,9 +49,6 @@ public:
unsigned char m_bank_force;
uint8_t m_timer_irq_flag;
uint8_t m_nmi_flag;
- uint8_t m_printer_command;
- uint8_t m_printer_data;
- uint8_t m_printer_status;
int16_t m_printer_headpos;
uint16_t m_kb_scan_row;
uint8_t m_mcu_keyboard_data[16];
@@ -126,6 +124,7 @@ public:
DECLARE_WRITE_LINE_MEMBER( pcw_fdc_interrupt );
required_device<cpu_device> m_maincpu;
required_device<upd765a_device> m_fdc;
+ required_device_array<floppy_connector, 2> m_floppy;
required_device<ram_device> m_ram;
required_device<beep_device> m_beeper;
required_device<screen_device> m_screen;